Exemplo n.º 1
0
func (m *Mixer) Destroy() {
	C.al_destroy_mixer((*C.ALLEGRO_MIXER)(unsafe.Pointer(m)))
}
Exemplo n.º 2
0
Arquivo: audio.go Projeto: beoran/algo
// Destroys the mixer.
func (self *Mixer) Destroy() {
	if self.handle != nil {
		C.al_destroy_mixer(self.toC())
	}
	self.handle = nil
}