/frameworks/base/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 | texture.cpp | 591 GGLfixed f = gglFloatToFixed(c->transforms.vpt.zFar); in set_depth_and_fog()
|
/frameworks/base/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 | 318 int zFar in glDepthRangexOES() argument 351 int zFar in glFrustumxOES() argument 582 int zFar in glOrthoxOES() argument 939 float zFar in glDepthRangefOES() argument 950 float zFar in glFrustumfOES() argument 961 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 998 float zFar in glOrthof() argument 1009 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 | GLES20.java | 643 float zFar in glDepthRangef() argument
|
/frameworks/base/opengl/libs/GLES_CM/ |
D | glext_api.in | 55 void API_ENTRY(glDepthRangexOES)(GLclampx zNear, GLclampx zFar) { 56 CALL_GL_API(glDepthRangexOES, zNear, zFar); 64 …ustumxOES)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) { 65 CALL_GL_API(glFrustumxOES, left, right, bottom, top, zNear, zFar); 118 …OrthoxOES)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) { 119 CALL_GL_API(glOrthoxOES, left, right, bottom, top, zNear, zFar); 226 void API_ENTRY(glDepthRangefOES)(GLclampf zNear, GLclampf zFar) { 227 CALL_GL_API(glDepthRangefOES, zNear, zFar); 229 …ustumfOES)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) { 230 CALL_GL_API(glFrustumfOES, left, right, bottom, top, zNear, zFar); [all …]
|
D | gl_api.in | 16 void API_ENTRY(glDepthRangef)(GLclampf zNear, GLclampf zFar) { 17 CALL_GL_API(glDepthRangef, zNear, zFar); 25 …lFrustumf)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) { 26 CALL_GL_API(glFrustumf, left, right, bottom, top, zNear, zFar); 79 …(glOrthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) { 80 CALL_GL_API(glOrthof, left, right, bottom, top, zNear, zFar); 193 void API_ENTRY(glDepthRangex)(GLclampx zNear, GLclampx zFar) { 194 CALL_GL_API(glDepthRangex, zNear, zFar); 229 …lFrustumx)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) { 230 CALL_GL_API(glFrustumx, left, right, bottom, top, zNear, zFar); [all …]
|
/frameworks/base/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/base/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/base/opengl/include/GLES/ |
D | glext.h | 534 GL_API void GL_APIENTRY glDepthRangexOES (GLclampx zNear, GLclampx zFar); 537 …rustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 555 …lOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 574 typedef void (GL_APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLclampx zNear, GLclampx zFar); 577 …MXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 595 …OXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); 703 GL_API void GL_APIENTRY glDepthRangefOES (GLclampf zNear, GLclampf zFar); 704 …rustumfOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 705 …lOrthofOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); 710 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 | 317 float zFar in glDepthRangef() argument 324 int zFar in glDepthRangex() argument 436 float zFar in glFrustumf() argument 447 int zFar in glFrustumx() argument 806 float zFar in glOrthof() argument 817 int zFar in glOrthox() argument
|
/frameworks/base/opengl/libs/ |
D | entries.in | 76 GL_ENTRY(void, glDepthRangef, GLclampf zNear, GLclampf zFar) 77 GL_ENTRY(void, glDepthRangefOES, GLclampf zNear, GLclampf zFar) 78 GL_ENTRY(void, glDepthRangex, GLclampx zNear, GLclampx zFar) 79 GL_ENTRY(void, glDepthRangexOES, GLclampx zNear, GLclampx zFar) 132 … glFrustumf, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) 133 …FrustumfOES, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) 134 … glFrustumx, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) 135 …FrustumxOES, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) 263 …d, glOrthof, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) 264 …glOrthofOES, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) [all …]
|
/frameworks/base/core/jni/ |
D | android_opengl_GLES11Ext.cpp | 602 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) { in android_glDepthRangexOES__II() argument 605 (GLclampx)zFar in android_glDepthRangexOES__II() 673 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glFrustumxOES__IIIIII() argument 680 (GLfixed)zFar in android_glFrustumxOES__IIIIII() 1357 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glOrthoxOES__IIIIII() argument 1364 (GLfixed)zFar in android_glOrthoxOES__IIIIII() 1856 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { in android_glDepthRangefOES__FF() argument 1859 (GLclampf)zFar in android_glDepthRangefOES__FF() 1866 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glFrustumfOES__FFFFFF() argument 1873 (GLfloat)zFar in android_glFrustumfOES__FFFFFF() [all …]
|
D | android_opengl_GLES10.cpp | 507 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { in android_glDepthRangef__FF() argument 510 (GLclampf)zFar in android_glDepthRangef__FF() 517 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) { in android_glDepthRangex__II() argument 520 (GLclampx)zFar in android_glDepthRangex__II() 865 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glFrustumf__FFFFFF() argument 872 (GLfloat)zFar in android_glFrustumf__FFFFFF() 879 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glFrustumx__IIIIII() argument 886 (GLfixed)zFar in android_glFrustumx__IIIIII() 2810 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glOrthof__FFFFFF() argument 2817 (GLfloat)zFar in android_glOrthof__FFFFFF() [all …]
|
D | com_google_android_gles_jni_GLImpl.cpp | 633 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { in android_glDepthRangef__FF() argument 636 (GLclampf)zFar in android_glDepthRangef__FF() 643 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) { in android_glDepthRangex__II() argument 646 (GLclampx)zFar in android_glDepthRangex__II() 991 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glFrustumf__FFFFFF() argument 998 (GLfloat)zFar in android_glFrustumf__FFFFFF() 1005 …(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar)… in android_glFrustumx__IIIIII() argument 1012 (GLfixed)zFar in android_glFrustumx__IIIIII() 2936 …, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { in android_glOrthof__FFFFFF() argument 2943 (GLfloat)zFar in android_glOrthof__FFFFFF() [all …]
|
/frameworks/base/opengl/tests/angeles/ |
D | demo.c | 503 GLfloat zNear, GLfloat zFar) in gluPerspective() argument 514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536)); in gluPerspective()
|
/frameworks/base/opengl/libs/GLES2/ |
D | gl2_api.in | 109 void API_ENTRY(glDepthRangef)(GLclampf zNear, GLclampf zFar) { 110 CALL_GL_API(glDepthRangef, zNear, zFar);
|
/frameworks/base/include/private/opengles/ |
D | gl_context.h | 479 GLfloat zFar; member
|
/frameworks/base/opengl/include/GLES2/ |
D | gl2.h | 510 GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);
|