예제 #1
0
func (m *Mixer) Destroy() {
	C.al_destroy_mixer((*C.ALLEGRO_MIXER)(unsafe.Pointer(m)))
}
예제 #2
0
파일: audio.go 프로젝트: beoran/algo
// Destroys the mixer.
func (self *Mixer) Destroy() {
	if self.handle != nil {
		C.al_destroy_mixer(self.toC())
	}
	self.handle = nil
}