예제 #1
0
파일: alcCore.go 프로젝트: dennwc/go-openal
// Renamed, was SuspendContext.
func (self *Context) Suspend() {
	C.alcSuspendContext(self.handle)
}
예제 #2
0
파일: alc.go 프로젝트: nzlov/goal
func (context *Context) Suspend() {
	C.alcSuspendContext((*C.ALCcontext)(context))
}
예제 #3
0
파일: alc.go 프로젝트: Jragonmiris/go-al
func (con Context) Suspend() error {
	C.alcSuspendContext(con.context)
	return GetError()
}