Ejemplo n.º 1
0
func ClearDepthf(
	depth Clampf) {
	C.glClearDepthf(
		C.GLclampf(depth))

}
Ejemplo n.º 2
0
func ClearDepthf(depth float32) {
	C.glClearDepthf(C.GLfloat(depth))
}
Ejemplo n.º 3
0
func ClearDepthf(depth float32) {
	C.glClearDepthf(C.GLclampf(depth))
}
Ejemplo n.º 4
0
Archivo: gl.go Proyecto: eaburns/gl
// ClearDepth specifies the clear value for the depth buffer.
func ClearDepth(d float32) {
	C.glClearDepthf(C.GLfloat(d))
}