コード例 #1
0
ファイル: core.go プロジェクト: pigulon/go-openal
func (self *Context) DestroyContext() {
	C.alcDestroyContext(self.handle)
	self.handle = nil
	// XXX: there used to be a alcDestroyContext() that
	// returned something, but our alc.h doesn't list
	// that one... Hmmm...
}
コード例 #2
0
ファイル: alc.go プロジェクト: nzlov/goal
func (context *Context) Destroy() {
	C.alcDestroyContext((*C.ALCcontext)(context))
}
コード例 #3
0
ファイル: alcCore.go プロジェクト: dennwc/go-openal
// Renamed, was DestroyContext.
func (self *Context) Destroy() {
	C.alcDestroyContext(self.handle)
	self.handle = nil
}
コード例 #4
0
ファイル: alc_notandroid.go プロジェクト: 2722/lantern
func alcDestroyContext(c unsafe.Pointer) {
	C.alcDestroyContext((*C.ALCcontext)(c))
}
コード例 #5
0
ファイル: alc.go プロジェクト: Jragonmiris/go-al
func (con Context) Destroy() error {
	C.alcDestroyContext(con.context)
	return GetError()
}