コード例 #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))
}