Exemplo n.º 1
0
func Hint(target, mode Enum) {
	defer func() {
		errstr := errDrain()
		log.Printf("gl.Hint(%v, %v) %v", target, mode, errstr)
	}()
	C.glHint(target.c(), mode.c())
}
Exemplo n.º 2
0
func Hint(target, mode Enum) {
	C.glHint(target.c(), mode.c())
}
Exemplo n.º 3
0
func Hint(
	target Enum, mode Enum) {
	C.glHint(
		C.GLenum(target),
		C.GLenum(mode))
}
Exemplo n.º 4
0
func Hint(hint HintType, value HintValue) {
	C.glHint(C.GLenum(hint), C.GLenum(value))
}
Exemplo n.º 5
0
func Hint(target, mode uint) {
	C.glHint(C.GLenum(target), C.GLenum(mode))
}