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

/frameworks/base/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/base/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 Dtexture.cpp591 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
990 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
998 float zFar
[all...]
H A DMatrix.java370 * @param zFar
373 float fovy, float aspect, float zNear, float zFar) {
375 float rangeReciprocal = 1.0f / (zNear - zFar);
389 m[offset + 10] = (zFar + zNear) * rangeReciprocal;
394 m[offset + 14] = 2.0f * zFar * zNear * rangeReciprocal;
372 perspectiveM(float[] m, int offset, float fovy, float aspect, float zNear, float zFar) argument
H A DGLES20.java639 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
643 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/base/opengl/include/GLES/
H A Dglext.h534 GL_API void GL_APIENTRY glDepthRangexOES (GLclampx zNear, GLclampx zFar);
537 GL_API void GL_APIENTRY glFrustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
555 GL_API void GL_APIENTRY glOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
574 typedef void (GL_APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLclampx zNear, GLclampx zFar);
577 typedef void (GL_APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
595 typedef void (GL_APIENTRYP PFNGLORTHOXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
703 GL_API void GL_APIENTRY glDepthRangefOES (GLclampf zNear, GLclampf zFar);
704 GL_API void GL_APIENTRY glFrustumfOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
705 GL_API void GL_APIENTRY glOrthofOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
710 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.java313 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
317 float zFar
320 // C function void glDepthRangex ( GLclampx zNear, GLclampx zFar )
324 int zFar
428 // C function void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
436 float zFar
439 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
447 int zFar
798 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
806 float zFar
[all...]
/frameworks/base/opengl/libs/
H A Dglesv2dbg_functions.h78 GL_ENTRY(void, glDepthRangef, GLclampf zNear, GLclampf zFar)
79 GL_ENTRY(void, glDepthRangefOES, GLclampf zNear, GLclampf zFar)
80 GL_ENTRY(void, glDepthRangex, GLclampx zNear, GLclampx zFar)
81 GL_ENTRY(void, glDepthRangexOES, GLclampx zNear, GLclampx zFar)
134 GL_ENTRY(void, glFrustumf, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
135 GL_ENTRY(void, glFrustumfOES, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
136 GL_ENTRY(void, glFrustumx, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
137 GL_ENTRY(void, glFrustumxOES, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
265 GL_ENTRY(void, glOrthof, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
266 GL_ENTRY(void, glOrthofOES, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
[all...]
/frameworks/base/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.cpp482 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
485 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
488 (GLclampf)zFar
492 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
495 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
498 (GLclampx)zFar
840 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
843 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
850 (GLfloat)zFar
854 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
484 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
494 android_glDepthRangex__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
842 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
856 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2781 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2795 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.cpp577 /* void glDepthRangexOES ( GLclampx zNear, GLclampx zFar ) */
580 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
583 (GLclampx)zFar
648 /* void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
651 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
658 (GLfixed)zFar
1332 /* void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
1335 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
1342 (GLfixed)zFar
2155 /* void glDepthRangefOES ( GLclampf zNear, GLclampf zFar ) */
579 android_glDepthRangexOES__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
650 android_glFrustumxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
1334 android_glOrthoxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2157 android_glDepthRangefOES__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
2167 android_glFrustumfOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2181 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.cpp608 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
611 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
614 (GLclampf)zFar
618 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
621 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
624 (GLclampx)zFar
966 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
969 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
976 (GLfloat)zFar
980 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
610 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
620 android_glDepthRangex__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
968 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
982 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2907 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2921 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.cpp762 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
765 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
768 (GLclampf)zFar
764 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
/frameworks/base/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/base/include/private/opengles/
H A Dgl_context.h476 GLfloat zFar; member in struct:android::gl::vp_transform_t
/frameworks/base/opengl/libs/GLES2_dbg/src/
H A Dapi.cpp895 void Debug_glDepthRangef(GLclampf zNear, GLclampf zFar) argument
900 GLclampf zFar; member in struct:__anon1040
903 _c->glDepthRangef(zNear, zFar);
908 caller.zFar = zFar;
911 msg.set_arg1(ToInt(zFar));
/frameworks/base/opengl/include/GLES2/
H A Dgl2.h510 GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);

Completed in 476 milliseconds