Searched refs:zNear (Results 1 - 19 of 19) sorted by relevance

/external/mesa3d/src/pixelflinger2/
H A Dpixelflinger2.cpp32 static void DepthRangef(GGLInterface * iface, GLclampf zNear, GLclampf zFar) argument
35 ctx->viewport.n = VectorComp_t_CTR((zNear + zFar) / 2);
36 ctx->viewport.f = VectorComp_t_CTR((zFar - zNear) / 2);
/external/replicaisland/src/com/replica/replicaisland/
H A DGLErrorLogger.java195 public void glDepthRangef(float zNear, float zFar) { argument
196 ((GL10)mGL).glDepthRangef(zNear, zFar);
200 public void glDepthRangex(int zNear, int zFar) { argument
201 ((GL10)mGL).glDepthRangex(zNear, zFar);
281 float top, float zNear, float zFar) {
283 top, zNear, zFar);
288 int zNear, int zFar) {
290 zNear, zFar);
511 float zNear, float zFar) {
513 zNear, zFa
280 glFrustumf(float left, float right, float bottom, float top, float zNear, float zFar) argument
287 glFrustumx(int left, int right, int bottom, int top, int zNear, int zFar) argument
510 glOrthof(float left, float right, float bottom, float top, float zNear, float zFar) argument
517 glOrthox(int left, int right, int bottom, int top, int zNear, int zFar) argument
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_rmain.c910 float zNear, float zFar )
914 ymax = zNear * tan( fovy * M_PI / 360.0f );
920 glFrustumf( xmin, xmax, ymin, ymax, zNear, zFar );
926 GLdouble zNear, GLdouble zFar )
930 ymax = zNear * tan( fovy * M_PI / 360.0 );
936 glFrustum( xmin, xmax, ymin, ymax, zNear, zFar );
909 MYgluPerspective( float fovy, float aspect, float zNear, float zFar ) argument
925 MYgluPerspective( GLdouble fovy, GLdouble aspect, GLdouble zNear, GLdouble zFar ) argument
/external/quake/quake/src/WinQuake/
H A Dgl_rmain.cpp1009 float zNear, float zFar )
1013 ymax = zNear * tan( fovy * M_PI / 360.0f );
1019 glFrustumf( xmin, xmax, ymin, ymax, zNear, zFar );
1025 GLdouble zNear, GLdouble zFar )
1029 ymax = zNear * tan( fovy * M_PI / 360.0 );
1035 glFrustum( xmin, xmax, ymin, ymax, zNear, zFar );
1008 MYgluPerspective( float fovy, float aspect, float zNear, float zFar ) argument
1024 MYgluPerspective( GLdouble fovy, GLdouble aspect, GLdouble zNear, GLdouble zFar ) argument
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DContext.h192 float zNear; member in struct:gl::State
251 void setDepthRange(float zNear, float zFar);
H A DContext.cpp93 mState.zNear = 0.0f;
414 void Context::setDepthRange(float zNear, float zFar) argument
416 mState.zNear = zNear;
1152 params[0] = mState.zNear;
1636 float zNear = clamp01(mState.zNear); local
1654 viewport.MinZ = zNear;
1701 GLfloat dz[2] = {(zFar - zNear) / 2.0f, (zNear
[all...]
H A DlibGLESv2.cpp1598 void __stdcall glDepthRangef(GLclampf zNear, GLclampf zFar) argument
1600 TRACE("(GLclampf zNear = %f, GLclampf zFar = %f)", zNear, zFar);
1608 context->setDepthRange(zNear, zFar);
/external/mesa3d/include/pixelflinger2/
H A Dpixelflinger2_interface.h171 void (* DepthRangef)(GGLInterface_t * iface, GLclampf zNear, GLclampf zFar);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_glfuncs.h68 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/webkit/Source/WebKit/chromium/public/
H A DWebGraphicsContext3D.h209 virtual void depthRange(WGC3Dclampf zNear, WGC3Dclampf zFar) = 0;
/external/webkit/Source/WebKit/chromium/src/
H A DGraphicsContext3DInternal.h120 void depthRange(GC3Dclampf zNear, GC3Dclampf zFar);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContext3DQt.cpp861 void GraphicsContext3D::depthRange(GC3Dclampf zNear, GC3Dclampf zFar) argument
865 glDepthRangef(zNear, zFar);
867 glDepthRange(zNear, zFar);
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DGraphicsContext3DOpenGL.cpp587 void GraphicsContext3D::depthRange(GC3Dclampf zNear, GC3Dclampf zFar) argument
590 ::glDepthRange(zNear, zFar);
/external/mesa3d/include/GLES2/
H A Dgl2.h510 GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);
/external/webkit/Source/ThirdParty/ANGLE/include/GLES2/
H A Dgl2.h510 GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderingContext.h125 void depthRange(GC3Dfloat zNear, GC3Dfloat zFar);
H A DWebGLRenderingContext.idl504 [StrictTypeChecking] void depthRange(in float zNear, in float zFar);
H A DWebGLRenderingContext.cpp1297 void WebGLRenderingContext::depthRange(GC3Dfloat zNear, GC3Dfloat zFar) argument
1301 if (zNear > zFar) {
1305 m_context->depthRange(zNear, zFar);
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext3D.h646 void depthRange(GC3Dclampf zNear, GC3Dclampf zFar);

Completed in 1684 milliseconds