コード例 #1
0
ファイル: audio.go プロジェクト: b1naryth1ef/allegro
func (a *Stream) GetDepth() uint32 {
	return uint32(C.al_get_audio_stream_depth((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
コード例 #2
0
ファイル: audio.go プロジェクト: beoran/algo
// Returns the depth of the audio stream
func (self *AudioStream) Depth() AudioDepth {
	return AudioDepth(C.al_get_audio_stream_depth(self.handle))
}