コード例 #1
0
ファイル: audio.go プロジェクト: b1naryth1ef/allegro
func (v *Voice) SetPosition(val uint32) bool {
	return bool(C.al_set_voice_position((*C.ALLEGRO_VOICE)(unsafe.Pointer(v)), C.uint(val)))
}
コード例 #2
0
ファイル: audio.go プロジェクト: beoran/algo
// Sets the position of the voice.
func (self *Voice) SetPosition(val uint) bool {
	return cb2b(C.al_set_voice_position(self.handle, C.uint(val)))
}