コード例 #1
0
ファイル: audio.go プロジェクト: b1naryth1ef/allegro
func ReserveSamples(reserveSamples int32) bool {
	return bool(C.al_reserve_samples(C.int(reserveSamples)))
}
コード例 #2
0
ファイル: audio.go プロジェクト: 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)))
}