Ejemplo n.º 1
0
func (a *Stream) GetPlaymode() uint32 {
	return uint32(C.al_get_audio_stream_playmode((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
Ejemplo n.º 2
0
Archivo: audio.go Proyecto: beoran/algo
// Returns the play mode of the audio stream
func (self *AudioStream) Playmode() PlayMode {
	return PlayMode(C.al_get_audio_stream_playmode(self.handle))
}