Searched refs:zFar (Results 1 - 24 of 24) sorted by relevance

/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES11Ext.spec19 void glDepthRangexOES ( GLclampx zNear, GLclampx zFar )
22 void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
40 void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
76 void glDepthRangefOES ( GLclampf zNear, GLclampf zFar )
77 void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
78 void glOrthofOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
H A DGLES10.spec25 void glDepthRangef ( GLclampf zNear, GLclampf zFar )
26 void glDepthRangex ( GLclampx zNear, GLclampx zFar )
40 void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
41 void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
73 void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
74 void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
H A DGLES20.spec37 void glDepthRangef ( GLclampf zNear, GLclampf zFar )
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp85 c->transforms.vpt.zFar = 1.0f;
703 GLfloat far = c->transforms.vpt.zFar;
813 GLfloat zNear, GLfloat zFar,
818 cmpf(zNear, zFar) ||
820 isZeroOrNegativef(zFar))
827 const GLfloat r_depth = reciprocalf(zNear - zFar);
832 const GLfloat C = (zFar + zNear) * r_depth;
833 const GLfloat D = mul2f(zFar * zNear * r_depth);
855 GLfloat zNear, GLfloat zFar,
860 cmpf(zNear, zFar))
810 frustumf( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar, ogles_context_t* c) argument
852 orthof( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar, ogles_context_t* c) argument
891 depthRangef(GLclampf zNear, GLclampf zFar, ogles_context_t* c) argument
994 glFrustumf( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) argument
1003 glFrustumx( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
1015 glOrthof( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) argument
1024 glOrthox( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
1094 glDepthRangef(GLclampf zNear, GLclampf zFar) argument
1100 glDepthRangex(GLclampx zNear, GLclampx zFar) argument
[all...]
H A Dcontext.h476 GLfloat zFar; member in struct:android::gl::vp_transform_t
H A Dtexture.cpp590 GGLfixed f = gglFloatToFixed(c->transforms.vpt.zFar);
/frameworks/base/opengl/java/android/opengl/
H A DGLES11Ext.java318 // C function void glDepthRangexOES ( GLclampx zNear, GLclampx zFar )
322 int zFar
347 // C function void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
355 int zFar
578 // C function void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
586 int zFar
939 // C function void glDepthRangefOES ( GLclampf zNear, GLclampf zFar )
943 float zFar
946 // C function void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
954 float zFar
[all...]
H A DGLU.java108 * @param zFar specifies the distance from the viewer to the far clipping
112 float zNear, float zFar) {
117 gl.glFrustumf(left, right, bottom, top, zNear, zFar);
111 gluPerspective(GL10 gl, float fovy, float aspect, float zNear, float zFar) argument
H A DGLES10.java500 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
504 float zFar
507 // C function void glDepthRangex ( GLclampx zNear, GLclampx zFar )
511 int zFar
615 // C function void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
623 float zFar
626 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
634 int zFar
974 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
982 float zFar
[all...]
H A DMatrix.java378 * @param zFar
381 float fovy, float aspect, float zNear, float zFar) {
383 float rangeReciprocal = 1.0f / (zNear - zFar);
397 m[offset + 10] = (zFar + zNear) * rangeReciprocal;
402 m[offset + 14] = 2.0f * zFar * zNear * rangeReciprocal;
380 perspectiveM(float[] m, int offset, float fovy, float aspect, float zNear, float zFar) argument
H A DGLES20.java643 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
647 float zFar
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java417 float zFar
422 int zFar
502 float zFar
511 int zFar
751 float zFar
760 int zFar
/frameworks/native/opengl/include/GLES/
H A Dglext.h623 GL_API void GL_APIENTRY glDepthRangexOES (GLclampx zNear, GLclampx zFar);
626 GL_API void GL_APIENTRY glFrustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
644 GL_API void GL_APIENTRY glOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
663 typedef void (GL_APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLclampx zNear, GLclampx zFar);
666 typedef void (GL_APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
684 typedef void (GL_APIENTRYP PFNGLORTHOXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
792 GL_API void GL_APIENTRY glDepthRangefOES (GLclampf zNear, GLclampf zFar);
793 GL_API void GL_APIENTRY glFrustumfOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
794 GL_API void GL_APIENTRY glOrthofOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
799 typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf zNear, GLclampf zFar);
[all...]
H A Dgl.h598 GL_API void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);
601 GL_API void GL_APIENTRY glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
619 GL_API void GL_APIENTRY glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
659 GL_API void GL_APIENTRY glDepthRangex (GLclampx zNear, GLclampx zFar);
671 GL_API void GL_APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
707 GL_API void GL_APIENTRY glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java314 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
318 float zFar
321 // C function void glDepthRangex ( GLclampx zNear, GLclampx zFar )
325 int zFar
429 // C function void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
437 float zFar
440 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
448 int zFar
799 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
807 float zFar
[all...]
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h497 GLAPI void APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);
498 GLAPI void APIENTRY glDepthRangex (GLclampx zNear, GLclampx zFar);
512 GLAPI void APIENTRY glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
513 GLAPI void APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
545 GLAPI void APIENTRY glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
546 GLAPI void APIENTRY glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp709 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
712 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
715 (GLclampf)zFar
719 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
722 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
725 (GLclampx)zFar
1074 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
1077 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
1084 (GLfloat)zFar
1088 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
711 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
721 android_glDepthRangex__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
1076 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
1090 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2422 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2436 android_glOrthox__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
[all...]
H A Dandroid_opengl_GLES11Ext.cpp901 /* void glDepthRangexOES ( GLclampx zNear, GLclampx zFar ) */
904 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
907 (GLclampx)zFar
987 /* void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
990 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
997 (GLfixed)zFar
1820 /* void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
1823 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
1830 (GLfixed)zFar
2816 /* void glDepthRangefOES ( GLclampf zNear, GLclampf zFar ) */
903 android_glDepthRangexOES__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
989 android_glFrustumxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
1822 android_glOrthoxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2818 android_glDepthRangefOES__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
2828 android_glFrustumfOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2842 android_glOrthofOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp643 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
646 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
649 (GLclampf)zFar
653 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
656 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
659 (GLclampx)zFar
1064 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
1067 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
1074 (GLfloat)zFar
1078 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
645 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
655 android_glDepthRangex__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
1066 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
1080 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
3254 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
3268 android_glOrthox__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
[all...]
H A Dandroid_opengl_GLES20.cpp1122 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
1125 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
1128 (GLclampf)zFar
1124 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h402 void GLTrace_glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
417 void GLTrace_glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
434 void GLTrace_glDepthRangex(GLclampx zNear, GLclampx zFar);
439 void GLTrace_glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
463 void GLTrace_glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
503 void GLTrace_glDepthRangexOES(GLclampx zNear, GLclampx zFar);
506 void GLTrace_glFrustumxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
524 void GLTrace_glOrthoxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
557 void GLTrace_glDepthRangefOES(GLclampf zNear, GLclampf zFar);
558 void GLTrace_glFrustumfOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
[all...]
H A Dgltrace_api.cpp15970 void GLTrace_glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) { argument
16006 // copy argument zFar
16010 arg_zFar->add_floatvalue(zFar);
16015 glContext->hooks->gl.glFrustumf(left, right, bottom, top, zNear, zFar);
16567 void GLTrace_glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) { argument
16603 // copy argument zFar
16607 arg_zFar->add_floatvalue(zFar);
16612 glContext->hooks->gl.glOrthof(left, right, bottom, top, zNear, zFar);
17239 void GLTrace_glDepthRangex(GLclampx zNear, GLclampx zFar) { argument
17251 // copy argument zFar
17398 GLTrace_glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
18294 GLTrace_glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
19717 GLTrace_glDepthRangexOES(GLclampx zNear, GLclampx zFar) argument
19820 GLTrace_glFrustumxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
20521 GLTrace_glOrthoxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) argument
21796 GLTrace_glDepthRangefOES(GLclampf zNear, GLclampf zFar) argument
21830 GLTrace_glFrustumfOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) argument
21888 GLTrace_glOrthofOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) argument
[all...]
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c503 GLfloat zNear, GLfloat zFar)
514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536));
502 gluPerspective(GLfloat fovy, GLfloat aspect, GLfloat zNear, GLfloat zFar) argument
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h509 GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);

Completed in 803 milliseconds