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

1 2 3 4 5 6 78 91011>>

  /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) {
648 (GLclampf)zNear,
653 /* void glDepthRangex ( GLclampx zNear, GLclampx zFar ) */
656 (JNIEnv *_env, jobject _this, jint zNear, jint zFar) {
658 (GLclampx)zNear,
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) {
1073 (GLfloat)zNear,
1078 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) *
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockWebGraphicsContext3D.h 104 virtual void depthRange(WGC3Dclampf zNear, WGC3Dclampf zFar) { }
  /frameworks/native/opengl/libagl/
context.h 479 GLfloat zNear;
  /external/chromium_org/mojo/examples/pepper_container_app/
ppb_opengles2_thunk.cc 362 void DepthRangef(PP_Resource context_id, GLclampf zNear, GLclampf zFar) {
365 glDepthRangef(zNear, zFar);
    [all...]
  /external/chromium_org/ppapi/lib/gl/gles2/
gles2.c 252 void GL_APIENTRY glDepthRangef(GLclampf zNear, GLclampf zFar) {
253 glGetInterfacePPAPI()->DepthRangef(glGetCurrentContextPPAPI(), zNear, zFar);
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
Context.cpp 125 mState.zNear = 0.0f;
531 void Context::setDepthRange(float zNear, float zFar)
533 mState.zNear = zNear;
    [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/gpu/command_buffer/client/
gles2_implementation_impl_autogen.h 426 void GLES2Implementation::DepthRangef(GLclampf zNear, GLclampf zFar) {
428 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glDepthRangef(" << zNear << ", "
430 helper_->DepthRangef(zNear, zFar);
    [all...]
gles2_c_lib_autogen.h 174 void GLES2DepthRangef(GLclampf zNear, GLclampf zFar) {
175 gles2::GetGLContext()->DepthRangef(zNear, zFar);
    [all...]
gles2_trace_implementation_impl_autogen.h 254 void GLES2TraceImplementation::DepthRangef(GLclampf zNear, GLclampf zFar) {
256 gl_->DepthRangef(zNear, zFar);
    [all...]
gles2_implementation_autogen.h 138 virtual void DepthRangef(GLclampf zNear, GLclampf zFar) OVERRIDE;
gles2_interface_autogen.h 101 virtual void DepthRangef(GLclampf zNear, GLclampf zFar) = 0;
gles2_interface_stub_autogen.h 101 virtual void DepthRangef(GLclampf zNear, GLclampf zFar) OVERRIDE;
gles2_trace_implementation_autogen.h 101 virtual void DepthRangef(GLclampf zNear, GLclampf zFar) OVERRIDE;
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
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...]
api_exec_es1.c 135 extern void GL_APIENTRY _mesa_DepthRangef(GLclampf zNear, GLclampf zFar);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/GL/
gl.h 746 WINGDIAPI void APIENTRY glDepthRange (GLclampd zNear,GLclampd zFar);
780 WINGDIAPI void APIENTRY glFrustum(GLdouble left,GLdouble right,GLdouble bottom,GLdouble top,GLdouble zNear,GLdouble zFar);
    [all...]
  /external/chromium_org/ppapi/shared_impl/
ppb_opengles2_shared.cc 369 void DepthRangef(PP_Resource context_id, GLclampf zNear, GLclampf zFar) {
372 ToGles2Impl(&enter)->DepthRangef(zNear, zFar);
    [all...]
  /development/ndk/platforms/android-5/include/GLES2/
gl2.h 510 GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);
  /external/chromium_org/ppapi/c/
ppb_opengles2.h 154 void (*DepthRangef)(PP_Resource context, GLclampf zNear, GLclampf zFar);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContextBase.h 167 void depthRange(GLfloat zNear, GLfloat zFar);
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebGraphicsContext3D.h 243 virtual void depthRange(WGC3Dclampf zNear, WGC3Dclampf zFar) = 0;
  /external/chromium_org/third_party/angle/include/GLES2/
gl2.h 509 GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
glapitable.h 331 void (GLAPIENTRYP DepthRange)(GLclampd zNear, GLclampd zFar); /* 288 */
332 void (GLAPIENTRYP Frustum)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); /* 289 */
339 void (GLAPIENTRYP Ortho)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); /* 296 */
    [all...]

Completed in 1595 milliseconds

1 2 3 4 5 6 78 91011>>