Exemplo n.º 1
0
func (v *Voice) GetDepth() uint32 {
	return uint32(C.al_get_voice_depth((*C.ALLEGRO_VOICE)(unsafe.Pointer(v))))
}
Exemplo n.º 2
0
Arquivo: audio.go Projeto: beoran/algo
// Returns the depth of the voice
func (self *Voice) Depth() AudioDepth {
	return AudioDepth(C.al_get_voice_depth(self.handle))
}