HomeSort by relevance Sort by last modified time
    Searched defs:glOrthof (Results 1 - 11 of 11) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 102 public void glOrthof(float left, float right, float bottom, float top,
109 glOrthof(fixedToFloat(left), fixedToFloat(right),
MatrixTrackingGL.java 490 public void glOrthof(float left, float right, float bottom, float top,
492 mCurrent.glOrthof(left, right, bottom, top, near, far);
493 mgl.glOrthof(left, right, bottom, top, near, far);
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 510 public void glOrthof(float left, float right, float bottom, float top,
512 ((GL10)mGL).glOrthof( left, right, bottom, top,
  /external/swiftshader/src/OpenGL/libGLES_CM/
libGLES_CM.hpp 163 void (*glOrthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
main.cpp     [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_client_context.h 39 glOrthof_client_proc_t glOrthof;
gl_entry.cpp 34 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
465 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
468 ctx->glOrthof(ctx, left, right, bottom, top, zNear, zFar);
    [all...]
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles.cpp 186 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
188 getDispatch()->glOrthof(left, right, bottom, top, zNear, zFar);
    [all...]
gles_dispatch.h 49 glOrthof_t glOrthof;
321 glOrthof_t set_glOrthof(glOrthof_t f) { glOrthof_t retval = glOrthof; glOrthof = f; return retval;}
    [all...]
  /device/google/cuttlefish_common/guest/libs/eglwrapper/
gles1_wrapper_context.h 39 glOrthof_wrapper_proc_t glOrthof;
gles1_wrapper_entry.cpp 34 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
463 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
466 ctx->glOrthof( left, right, bottom, top, zNear, zFar);
    [all...]

Completed in 905 milliseconds