Example #1
0
func (m *Mixer) GetChannels() uint32 {
	return uint32(C.al_get_mixer_channels((*C.ALLEGRO_MIXER)(unsafe.Pointer(m))))
}
Example #2
0
File: audio.go Project: beoran/algo
// Returns the channel configuration of the mixer
func (self *Mixer) Channels() ChannelConf {
	return ChannelConf(C.al_get_mixer_channels(self.handle))
}