Example #1
0
func (m *Mixer) Detach() bool {
	return bool(C.al_detach_mixer((*C.ALLEGRO_MIXER)(unsafe.Pointer(m))))
}
Example #2
0
File: audio.go Project: beoran/algo
// Detaches the mixer from it's player
func (self *Mixer) Detach() bool {
	return cb2b(C.al_detach_mixer(self.handle))
}