示例#1
0
文件: gles2.go 项目: remogatto/egles
func ClearDepthf(
	depth Clampf) {
	C.glClearDepthf(
		C.GLclampf(depth))

}
示例#2
0
文件: gl.go 项目: jackscan/go-gles3
func ClearDepthf(depth float32) {
	C.glClearDepthf(C.GLfloat(depth))
}
示例#3
0
文件: gl.go 项目: jackscan/go-gles2
func ClearDepthf(depth float32) {
	C.glClearDepthf(C.GLclampf(depth))
}
示例#4
0
文件: gl.go 项目: eaburns/gl
// ClearDepth specifies the clear value for the depth buffer.
func ClearDepth(d float32) {
	C.glClearDepthf(C.GLfloat(d))
}