예제 #1
0
파일: gldebug.go 프로젝트: Miaque/mojo
func FrontFace(mode Enum) {
	defer func() {
		errstr := errDrain()
		log.Printf("gl.FrontFace(%v) %v", mode, errstr)
	}()
	C.glFrontFace(mode.c())
}
예제 #2
0
파일: gl_opengles.go 프로젝트: tanema/amore
func FrontFace(mode Enum) {
	C.glFrontFace(mode.c())
}
예제 #3
0
파일: gles2.go 프로젝트: remogatto/egles
func FrontFace(
	mode Enum) {
	C.glFrontFace(
		C.GLenum(mode))
}
예제 #4
0
파일: gl.go 프로젝트: jackscan/go-gles2
func FrontFace(mode Facing) {
	C.glFrontFace(C.GLenum(mode))
}
예제 #5
0
파일: es2.go 프로젝트: nick-fedesna/egles
func FrontFace(mode uint) {
	C.glFrontFace(C.GLenum(mode))
}