コード例 #1
0
ファイル: audio.go プロジェクト: b1naryth1ef/allegro
func (a *Stream) Destroy() {
	C.al_destroy_audio_stream((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a)))
}
コード例 #2
0
ファイル: audio.go プロジェクト: beoran/algo
// Destroys the audio stream.
func (self *AudioStream) Destroy() {
	if self.handle != nil {
		C.al_destroy_audio_stream(self.toC())
	}
	self.handle = nil
}