Example #1
0
func ReserveSamples(reserveSamples int32) bool {
	return bool(C.al_reserve_samples(C.int(reserveSamples)))
}
Example #2
0
File: audio.go Project: beoran/algo
// Reserves the given amount of samples and attaches them to the default mixer
func ReserveSamples(samples int) bool {
	return cb2b(C.al_reserve_samples(C.int(samples)))
}