예제 #1
0
파일: gldebug.go 프로젝트: Miaque/mojo
func IsProgram(p Program) (r0 bool) {
	defer func() {
		errstr := errDrain()
		log.Printf("gl.IsProgram(%v) %v%v", p, r0, errstr)
	}()
	return C.glIsProgram(p.c()) != 0
}
예제 #2
0
파일: gl_opengles.go 프로젝트: tanema/amore
func IsProgram(p Program) bool {
	return C.glIsProgram(p.c()) != 0
}
예제 #3
0
파일: gles2.go 프로젝트: remogatto/egles
func IsProgram(program uint32) bool {
	return *goBoolean(C.glIsProgram(
		C.GLuint(program)))
}
예제 #4
0
파일: object.go 프로젝트: pwaller/gl
func (object Object) IsProgram() bool { return C.glIsProgram(C.GLuint(object)) != 0 }