Searched defs:zNear (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DGLU.java106 * @param zNear specifies the distance from the viewer to the near clipping
112 float zNear, float zFar) {
113 float top = zNear * (float) Math.tan(fovy * (Math.PI / 360.0));
117 gl.glFrustumf(left, right, bottom, top, zNear, zFar);
111 gluPerspective(GL10 gl, float fovy, float aspect, float zNear, float zFar) argument
H A DGLES11Ext.java314 // C function void glDepthRangexOES ( GLclampx zNear, GLclampx zFar )
317 int zNear,
343 // C function void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
350 int zNear,
574 // C function void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
581 int zNear,
935 // C function void glDepthRangefOES ( GLclampf zNear, GLclampf zFar )
938 float zNear,
942 // C function void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
949 float zNear,
316 glDepthRangexOES( int zNear, int zFar ) argument
345 glFrustumxOES( int left, int right, int bottom, int top, int zNear, int zFar ) argument
576 glOrthoxOES( int left, int right, int bottom, int top, int zNear, int zFar ) argument
937 glDepthRangefOES( float zNear, float zFar ) argument
944 glFrustumfOES( float left, float right, float bottom, float top, float zNear, float zFar ) argument
955 glOrthofOES( float left, float right, float bottom, float top, float zNear, float zFar ) argument
[all...]
H A DGLES10.java500 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
503 float zNear,
507 // C function void glDepthRangex ( GLclampx zNear, GLclampx zFar )
510 int zNear,
615 // C function void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
622 float zNear,
626 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
633 int zNear,
974 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
981 float zNear,
502 glDepthRangef( float zNear, float zFar ) argument
509 glDepthRangex( int zNear, int zFar ) argument
617 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar ) argument
628 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar ) argument
976 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar ) argument
987 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar ) argument
[all...]
H A DGLES20.java639 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
642 float zNear,
641 glDepthRangef( float zNear, float zFar ) argument
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp84 c->transforms.vpt.zNear = 0.0f;
702 GLfloat near = c->transforms.vpt.zNear;
813 GLfloat zNear, GLfloat zFar,
818 cmpf(zNear, zFar) ||
819 isZeroOrNegativef(zNear) ||
827 const GLfloat r_depth = reciprocalf(zNear - zFar);
828 const GLfloat x = mul2f(zNear * r_width);
829 const GLfloat y = mul2f(zNear * r_height);
832 const GLfloat C = (zFar + zNear) * r_depth;
833 const GLfloat D = mul2f(zFar * zNear * r_dept
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...]
/frameworks/base/opengl/tests/angeles/
H A Ddemo.c503 GLfloat zNear, GLfloat zFar)
507 ymax = zNear * (GLfloat)tan(fovy * PI / 360);
514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536));
502 gluPerspective(GLfloat fovy, GLfloat aspect, GLfloat zNear, GLfloat zFar) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp504 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
507 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
509 (GLclampf)zNear,
514 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
517 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
519 (GLclampx)zNear,
862 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
865 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
871 (GLfloat)zNear,
876 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixe
506 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
516 android_glDepthRangex__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
864 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
878 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2809 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2823 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.cpp599 /* void glDepthRangexOES ( GLclampx zNear, GLclampx zFar ) */
602 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
604 (GLclampx)zNear,
670 /* void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
673 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
679 (GLfixed)zNear,
1354 /* void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
1357 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
1363 (GLfixed)zNear,
1853 /* void glDepthRangefOES ( GLclampf zNear, GLclamp
601 android_glDepthRangexOES__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
672 android_glFrustumxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
1356 android_glOrthoxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
1855 android_glDepthRangefOES__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
1865 android_glFrustumfOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
1879 android_glOrthofOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
[all...]
H A Dandroid_opengl_GLES20.cpp777 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
780 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
782 (GLclampf)zNear,
779 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp630 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
633 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
635 (GLclampf)zNear,
640 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
643 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
645 (GLclampx)zNear,
988 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
991 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
997 (GLfloat)zNear,
1002 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixe
632 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
642 android_glDepthRangex__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
990 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
1004 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2935 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2949 android_glOrthox__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
[all...]
/frameworks/base/include/private/opengles/
H A Dgl_context.h478 GLfloat zNear; member in struct:android::gl::vp_transform_t
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java313 // C function void glDepthRangef ( GLclampf zNear, GLclampf zFar )
316 float zNear,
320 // C function void glDepthRangex ( GLclampx zNear, GLclampx zFar )
323 int zNear,
428 // C function void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
435 float zNear,
439 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
446 int zNear,
798 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
805 float zNear,
315 glDepthRangef( float zNear, float zFar ) argument
322 glDepthRangex( int zNear, int zFar ) argument
430 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar ) argument
441 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar ) argument
800 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar ) argument
811 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar ) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java416 float zNear,
421 int zNear,
501 float zNear,
510 int zNear,
750 float zNear,
759 int zNear,
415 glDepthRangef( float zNear, float zFar ) argument
420 glDepthRangex( int zNear, int zFar ) argument
496 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar ) argument
505 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar ) argument
745 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar ) argument
754 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar ) argument

Completed in 1758 milliseconds