예제 #1
0
파일: gldebug.go 프로젝트: Miaque/mojo
func IsEnabled(cap Enum) (r0 bool) {
	defer func() {
		errstr := errDrain()
		log.Printf("gl.IsEnabled(%v) %v%v", cap, r0, errstr)
	}()
	return C.glIsEnabled(cap.c()) != 0
}
예제 #2
0
파일: gl_opengles.go 프로젝트: tanema/amore
func IsEnabled(cap Enum) bool {
	return C.glIsEnabled(cap.c()) != 0
}
예제 #3
0
파일: gles2.go 프로젝트: remogatto/egles
func IsEnabled(cap Enum) bool {
	return *goBoolean(C.glIsEnabled(
		C.GLenum(cap)))
}
예제 #4
0
파일: gl.go 프로젝트: james4k/gl
//bool glIsEnabled (GLenum cap)
func IsEnabled(cap GLenum) bool {
	return goBool(C.glIsEnabled(C.GLenum(cap)))
}