Beispiel #1
0
// Renamed, was SuspendContext.
func (self *Context) Suspend() {
	C.alcSuspendContext(self.handle)
}
Beispiel #2
0
Datei: alc.go Projekt: nzlov/goal
func (context *Context) Suspend() {
	C.alcSuspendContext((*C.ALCcontext)(context))
}
Beispiel #3
0
func (con Context) Suspend() error {
	C.alcSuspendContext(con.context)
	return GetError()
}