Ejemplo n.º 1
0
Archivo: alc.go Proyecto: Miaque/mojo
// MakeContextCurrent makes a context current process-wide.
func MakeContextCurrent(c *Context) bool {
	return C.alcMakeContextCurrent(c.c) == 1
}
Ejemplo n.º 2
0
Archivo: alc.go Proyecto: nzlov/goal
func (context *Context) MakeCurrent() bool {
	return goBool(C.alcMakeContextCurrent((*C.ALCcontext)(context)))
}
Ejemplo n.º 3
0
func alcMakeContextCurrent(c unsafe.Pointer) bool {
	ctx := (*C.ALCcontext)(c)
	return C.alcMakeContextCurrent(ctx) == C.ALC_TRUE
}
Ejemplo n.º 4
0
// Renamed, was MakeContextCurrent.
func (self *Context) Activate() bool {
	return C.alcMakeContextCurrent(self.handle) != alFalse
}
Ejemplo n.º 5
0
func (con Context) MakeCurrent() error {
	C.alcMakeContextCurrent(con.context)
	return GetError()
}
Ejemplo n.º 6
0
func UnsetCurrentContext() error {
	C.alcMakeContextCurrent(nil)
	return GetError()
}