/frameworks/native/opengl/libagl/ |
D | matrix.cpp | 85 c->transforms.vpt.zFar = 1.0f; in ogles_init_matrix() 703 GLfloat far = c->transforms.vpt.zFar; in ogles_viewport() 813 GLfloat zNear, GLfloat zFar, in frustumf() argument 818 cmpf(zNear, zFar) || in frustumf() 820 isZeroOrNegativef(zFar)) in frustumf() 827 const GLfloat r_depth = reciprocalf(zNear - zFar); in frustumf() 832 const GLfloat C = (zFar + zNear) * r_depth; in frustumf() 833 const GLfloat D = mul2f(zFar * zNear * r_depth); in frustumf() 855 GLfloat zNear, GLfloat zFar, in orthof() argument 860 cmpf(zNear, zFar)) in orthof() [all …]
|
D | context.h | 480 GLfloat zFar; member
|
D | texture.cpp | 590 GGLfixed f = gglFloatToFixed(c->transforms.vpt.zFar); in set_depth_and_fog()
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
D | GLES11Ext.spec | 19 void glDepthRangexOES ( GLclampx zNear, GLclampx zFar ) 22 …ustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) 40 …OrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) 76 void glDepthRangefOES ( GLclampf zNear, GLclampf zFar ) 77 …ustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) 78 …OrthofOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
|
D | GLES10.spec | 25 void glDepthRangef ( GLclampf zNear, GLclampf zFar ) 26 void glDepthRangex ( GLclampx zNear, GLclampx zFar ) 40 …lFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) 41 …lFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) 73 … glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) 74 … glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
|
D | GLES20.spec | 37 void glDepthRangef ( GLclampf zNear, GLclampf zFar )
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
D | GL10.java | 417 float zFar in glDepthRangef() argument 422 int zFar in glDepthRangex() argument 502 float zFar in glFrustumf() argument 511 int zFar in glFrustumx() argument 751 float zFar in glOrthof() argument 760 int zFar in glOrthox() argument
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLES11Ext.java | 322 int zFar in glDepthRangexOES() argument 355 int zFar in glFrustumxOES() argument 586 int zFar in glOrthoxOES() argument 943 float zFar in glDepthRangefOES() argument 954 float zFar in glFrustumfOES() argument 965 float zFar in glOrthofOES() argument
|
D | GLES10.java | 504 float zFar in glDepthRangef() argument 511 int zFar in glDepthRangex() argument 623 float zFar in glFrustumf() argument 634 int zFar in glFrustumx() argument 982 float zFar in glOrthof() argument 993 int zFar in glOrthox() argument
|
D | GLU.java | 112 float zNear, float zFar) { in gluPerspective() argument 117 gl.glFrustumf(left, right, bottom, top, zNear, zFar); in gluPerspective()
|
D | Matrix.java | 381 float fovy, float aspect, float zNear, float zFar) { in perspectiveM() argument 383 float rangeReciprocal = 1.0f / (zNear - zFar); in perspectiveM() 397 m[offset + 10] = (zFar + zNear) * rangeReciprocal; in perspectiveM() 402 m[offset + 14] = 2.0f * zFar * zNear * rangeReciprocal; in perspectiveM()
|
D | GLES20.java | 647 float zFar in glDepthRangef() argument
|
/frameworks/native/opengl/tools/glgen/specs/jsr239/ |
D | glspec-1.0 | 25 void glDepthRangef ( GLclampf zNear, GLclampf zFar ) 26 void glDepthRangex ( GLclampx zNear, GLclampx zFar ) 40 …lFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) 41 …lFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) 73 … glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) 74 … glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
|
/frameworks/native/opengl/tests/angeles/include/GLES/ |
D | gl.h | 497 GLAPI void APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar); 498 GLAPI void APIENTRY glDepthRangex (GLclampx zNear, GLclampx zFar); 512 …glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 513 …glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 545 …Y glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 546 …Y glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
|
/frameworks/native/opengl/include/GLES/ |
D | glext.h | 672 GL_API void GL_APIENTRY glDepthRangexOES (GLclampx zNear, GLclampx zFar); 675 …rustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 693 …lOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 712 typedef void (GL_APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLclampx zNear, GLclampx zFar); 715 …MXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 733 …OXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 846 GL_API void GL_APIENTRY glDepthRangefOES (GLclampf zNear, GLclampf zFar); 847 …rustumfOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 848 …lOrthofOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 853 typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf zNear, GLclampf zFar); [all …]
|
D | gl.h | 598 GL_API void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar); 601 …glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 619 …Y 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 …glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 707 …Y glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | GLImpl.java | 318 float zFar in glDepthRangef() argument 325 int zFar in glDepthRangex() argument 437 float zFar in glFrustumf() argument 448 int zFar in glFrustumx() argument 807 float zFar in glOrthof() argument 818 int zFar in glOrthox() argument
|
/frameworks/base/core/jni/ |
D | android_opengl_GLES10.cpp | 830 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { in android_glDepthRangef__FF() argument 833 (GLclampf)zFar in android_glDepthRangef__FF() 840 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) { in android_glDepthRangex__II() argument 843 (GLclampx)zFar in android_glDepthRangex__II() 1195 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glFrustumf__FFFFFF() argument 1202 (GLfloat)zFar in android_glFrustumf__FFFFFF() 1209 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glFrustumx__IIIIII() argument 1216 (GLfixed)zFar in android_glFrustumx__IIIIII() 2542 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glOrthof__FFFFFF() argument 2549 (GLfloat)zFar in android_glOrthof__FFFFFF() [all …]
|
D | android_opengl_GLES11Ext.cpp | 1022 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) { in android_glDepthRangexOES__II() argument 1025 (GLclampx)zFar in android_glDepthRangexOES__II() 1108 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glFrustumxOES__IIIIII() argument 1115 (GLfixed)zFar in android_glFrustumxOES__IIIIII() 1941 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glOrthoxOES__IIIIII() argument 1948 (GLfixed)zFar in android_glOrthoxOES__IIIIII() 2937 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { in android_glDepthRangefOES__FF() argument 2940 (GLclampf)zFar in android_glDepthRangefOES__FF() 2947 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glFrustumfOES__FFFFFF() argument 2954 (GLfloat)zFar in android_glFrustumfOES__FFFFFF() [all …]
|
D | com_google_android_gles_jni_GLImpl.cpp | 650 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { in android_glDepthRangef__FF() argument 653 (GLclampf)zFar in android_glDepthRangef__FF() 660 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) { in android_glDepthRangex__II() argument 663 (GLclampx)zFar in android_glDepthRangex__II() 1071 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glFrustumf__FFFFFF() argument 1078 (GLfloat)zFar in android_glFrustumf__FFFFFF() 1085 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glFrustumx__IIIIII() argument 1092 (GLfixed)zFar in android_glFrustumx__IIIIII() 3259 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glOrthof__FFFFFF() argument 3266 (GLfloat)zFar in android_glOrthof__FFFFFF() [all …]
|
D | android_opengl_GLES20.cpp | 1244 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { in android_glDepthRangef__FF() argument 1247 (GLclampf)zFar in android_glDepthRangef__FF()
|
/frameworks/native/opengl/tests/angeles/ |
D | demo.c | 503 GLfloat zNear, GLfloat zFar) in gluPerspective() argument 514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536)); in gluPerspective()
|