Example #1
0
// Renamed, was GetCurrentContext.
func CurrentContext() *Context {
	return &Context{C.alcGetCurrentContext()}
}
Example #2
0
File: alc.go Project: nzlov/goal
func GetCurrentContext() *Context {
	return (*Context)(C.alcGetCurrentContext())
}
Example #3
0
func CurrentContext() Context {
	return Context{C.alcGetCurrentContext()}
}