HomeSort by relevance Sort by last modified time
    Searched refs:zNear (Results 151 - 175 of 291) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/GLES/
gl.h 598 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);
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/GLES/
gl.h 598 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);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/include/GLES/
gl.h 598 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);
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES10.cpp 709 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */
712 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) {
714 (GLclampf)zNear,
719 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
722 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
724 (GLclampx)zNear,
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) {
1083 (GLfloat)zNear,
1088 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) *
    [all...]
android_opengl_GLES11Ext.cpp 901 /* void glDepthRangexOES ( GLclampx zNear, GLclampx zFar ) */
904 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
906 (GLclampx)zNear,
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) {
996 (GLfixed)zNear,
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
importgl.h 90 FNDEF(void, glFrustumx, (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar));
demo.c 503 GLfloat zNear, GLfloat zFar)
507 ymax = zNear * (GLfloat)tan(fovy * PI / 360);
514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536));
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 377 * @param zNear
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;
  /device/generic/goldfish/opengl/system/GLESv1_enc/
gl_enc.cpp 102 void glDepthRangef_enc(void *self , GLclampf zNear, GLclampf zFar)
114 memcpy(ptr, &zNear, 4); ptr += 4;
152 void glFrustumf_enc(void *self , GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
168 memcpy(ptr, &zNear, 4); ptr += 4;
475 void glOrthof_enc(void *self , GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
491 memcpy(ptr, &zNear, 4); ptr += 4;
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
Context.h 96 float zNear;
166 void setDepthRange(float zNear, float zFar);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Renderer.h 116 virtual bool setViewport(const gl::Rectangle &viewport, float zNear, float zFar, GLenum drawMode, GLenum frontFace,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/GL/
glu.h 28 void APIENTRY gluPerspective(GLdouble fovy,GLdouble aspect,GLdouble zNear,GLdouble zFar);
  /frameworks/native/opengl/tests/angeles/
demo.c 503 GLfloat zNear, GLfloat zFar)
507 ymax = zNear * (GLfloat)tan(fovy * PI / 360);
514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536));
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmImp.cpp 522 GL_API void GL_APIENTRY glDepthRangef( GLclampf zNear, GLclampf zFar) {
524 ctx->dispatcher().glDepthRange(zNear,zFar);
527 GL_API void GL_APIENTRY glDepthRangex( GLclampx zNear, GLclampx zFar) {
529 ctx->dispatcher().glDepthRange(X2F(zNear),X2F(zFar));
663 GL_API void GL_APIENTRY glFrustumf( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) {
665 ctx->dispatcher().glFrustum(left,right,bottom,top,zNear,zFar);
668 GL_API void GL_APIENTRY glFrustumx( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) {
670 ctx->dispatcher().glFrustum(X2F(left),X2F(right),X2F(bottom),X2F(top),X2F(zNear),X2F(zFar));
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
DummyGLfuncs.cpp 41 void GLAPIENTRY dummy_glDepthRange(GLclampd zNear, GLclampd zFar){}
100 void GLAPIENTRY dummy_glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar){}
128 void GLAPIENTRY dummy_glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar){}
DummyGLfuncs.h 48 void GLAPIENTRY dummy_glDepthRange(GLclampd zNear, GLclampd zFar);
107 void GLAPIENTRY dummy_glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
135 void GLAPIENTRY dummy_glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 58 static void (GLAPIENTRY *glDepthRange) (GLclampd zNear, GLclampd zFar);
134 static void (GLAPIENTRY *glFrustum) (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
162 static void (GLAPIENTRY *glOrtho) (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_glfuncs.h 68 SDL_PROC_UNUSED(void,glDepthRange,(GLclampd zNear, GLclampd zFar))
102 SDL_PROC_UNUSED(void,glFrustum,(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar))
195 SDL_PROC(void,glOrtho,(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar))
  /external/chromium_org/mojo/public/c/gles2/
gles2_call_visitor_autogen.h 145 VISIT_GL_CALL(DepthRangef, void, (GLclampf zNear, GLclampf zFar), (zNear, zFar))
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
Renderer11.h 75 virtual bool setViewport(const gl::Rectangle &viewport, float zNear, float zFar, GLenum drawMode, GLenum frontFace,
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
Renderer9.h 75 virtual bool setViewport(const gl::Rectangle &viewport, float zNear, float zFar, GLenum drawMode, GLenum frontFace,
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_matrix.c     [all...]
  /external/mesa3d/src/mesa/math/
m_matrix.c     [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES20.spec 37 void glDepthRangef ( GLclampf zNear, GLclampf zFar )
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_mapi_tmp_shared.h 302 void APIENTRY shared_dispatch_stub_288(GLclampd zNear, GLclampd zFar);
303 void APIENTRY shared_dispatch_stub_289(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
310 void APIENTRY shared_dispatch_stub_296(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
    [all...]

Completed in 1485 milliseconds

1 2 3 4 5 67 8 91011>>