Ejemplo n.º 1
0
func GetChannelCount(conf uint32) uint32 {
	return uint32(C.al_get_channel_count(C.ALLEGRO_CHANNEL_CONF(conf)))
}
Ejemplo n.º 2
0
Archivo: audio.go Proyecto: beoran/algo
// Gets the amount of available channels in a channel configguration
func (self ChannelConf) ChannelCount() uint {
	return uint(C.al_get_channel_count(self.toC()))
}