/frameworks/native/opengl/libs/GLES2/ |
gl2_api.in | 109 void API_ENTRY(glDepthRangef)(GLclampf zNear, GLclampf zFar) { 110 CALL_GL_API(glDepthRangef, zNear, zFar);
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
Renderer.h | 128 virtual bool setViewport(const gl::Rectangle &viewport, float zNear, float zFar, GLenum drawMode, GLenum frontFace,
|
Renderer11.h | 67 virtual bool setViewport(const gl::Rectangle &viewport, float zNear, float zFar, GLenum drawMode, GLenum frontFace,
|
Renderer9.h | 81 virtual bool setViewport(const gl::Rectangle &viewport, float zNear, float zFar, GLenum drawMode, GLenum frontFace,
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
GLES20.spec | 37 void glDepthRangef ( GLclampf zNear, GLclampf zFar )
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/ |
libGLESv1_CM.so | |
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/lib/ |
libGLESv1_CM.so | |
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/lib/ |
libGLESv1_CM.so | |
/prebuilts/ndk/5/platforms/android-4/arch-arm/usr/lib/ |
libGLESv1_CM.so | |
/prebuilts/ndk/6/platforms/android-4/arch-arm/usr/lib/ |
libGLESv1_CM.so | |
/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))
|
/frameworks/base/core/jni/ |
com_google_android_gles_jni_GLImpl.cpp | 643 /* void glDepthRangef ( GLclampf zNear, GLclampf zFar ) */ 646 (JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) { 649 (GLclampf)zFar 653 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */ 656 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) { 659 (GLclampx)zFar 1064 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */ 1067 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) { 1074 (GLfloat)zFar 1078 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */ [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/ |
Context.cpp | 118 mState.zFar = 1.0f; 385 void Context::setDepthRange(float zNear, float zFar) 388 mState.zFar = zFar; [all...] |
/device/generic/goldfish/opengl/system/GLESv2_enc/ |
gl2_entry.cpp | 45 void glDepthRangef(GLclampf zNear, GLclampf zFar); 446 void glDepthRangef(GLclampf zNear, GLclampf zFar) 449 ctx->glDepthRangef(ctx, zNear, zFar); [all...] |
gl2_enc.h | 61 void glDepthRangef_enc(void *self , GLclampf zNear, GLclampf zFar);
|
/external/chromium_org/ppapi/c/ |
ppb_opengles2.h | 104 void (*DepthRangef)(PP_Resource context, GLclampf zNear, GLclampf zFar);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
MockWebGraphicsContext3D.h | 105 virtual void depthRange(WGC3Dclampf zNear, WGC3Dclampf 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...] |
indirect.h | 356 extern _X_HIDDEN void __indirect_glDepthRange(GLclampd zNear, GLclampd zFar); 357 extern _X_HIDDEN void __indirect_glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); 364 extern _X_HIDDEN void __indirect_glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); [all...] |
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
demo.c | 503 GLfloat zNear, GLfloat zFar) 514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536));
|
/external/chromium_org/ppapi/lib/gl/gles2/ |
gles2.c | 202 void GL_APIENTRY glDepthRangef(GLclampf zNear, GLclampf zFar) { 203 glGetInterfacePPAPI()->DepthRangef(glGetCurrentContextPPAPI(), zNear, zFar);
|
/frameworks/native/opengl/tests/angeles/ |
demo.c | 503 GLfloat zNear, GLfloat zFar) 514 (GLfixed)(zNear * 65536), (GLfixed)(zFar * 65536));
|
/external/chromium_org/gpu/command_buffer/client/ |
gles2_implementation_impl_autogen.h | 360 void GLES2Implementation::DepthRangef(GLclampf zNear, GLclampf zFar) { 362 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glDepthRangef(" << zNear << ", " << zFar << ")"); // NOLINT 363 helper_->DepthRangef(zNear, zFar); [all...] |
gles2_implementation_autogen.h | 106 virtual void DepthRangef(GLclampf zNear, GLclampf zFar) OVERRIDE;
|
gles2_interface_autogen.h | 65 virtual void DepthRangef(GLclampf zNear, GLclampf zFar) = 0;
|