コード例 #1
0
ファイル: source.go プロジェクト: jaekwon/go-openal
// Renamed, was SourcePlayv.
func PlaySources(sources []Source) {
	C.walSourcePlayv(C.ALsizei(len(sources)), unsafe.Pointer(&sources[0]))
}
コード例 #2
0
ファイル: source.go プロジェクト: timshannon/go-openal
// Renamed, was SourcePlayv.
func (self Sources) Play() {
	C.walSourcePlayv(C.ALsizei(len(self)), unsafe.Pointer(&self[0]))
}