예제 #1
0
파일: gles2.go 프로젝트: remogatto/egles
func DepthRangef(
	zNear Clampf, zFar Clampf) {
	C.glDepthRangef(
		C.GLclampf(zNear),
		C.GLclampf(zFar))

}
예제 #2
0
파일: gl.go 프로젝트: jackscan/go-gles2
func DepthRangef(zNear, zFar float32) {
	C.glDepthRangef(C.GLclampf(zNear), C.GLclampf(zFar))
}