Exemplo n.º 1
0
func (s *Sample) Destroy() {
	C.al_destroy_sample((*C.ALLEGRO_SAMPLE)(unsafe.Pointer(s)))
}
Exemplo n.º 2
0
Arquivo: audio.go Projeto: beoran/algo
func (self *Sample) Destroy() {
	if self.handle != nil {
		C.al_destroy_sample(self.toC())
	}
	self.handle = nil
}