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

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 88 public void glMultMatrixx(int[] m, int offset) {
95 public void glMultMatrixx(IntBuffer m) {
MatrixTrackingGL.java 455 public void glMultMatrixx(int[] m, int offset) {
456 mCurrent.glMultMatrixx(m, offset);
457 mgl.glMultMatrixx(m, offset);
461 public void glMultMatrixx(IntBuffer m) {
463 mCurrent.glMultMatrixx(m);
465 mgl.glMultMatrixx(m);
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 474 public void glMultMatrixx(IntBuffer m) {
475 ((GL10)mGL).glMultMatrixx(m);
479 public void glMultMatrixx(int[] m, int offset) {
480 ((GL10)mGL).glMultMatrixx(m, offset);
  /external/swiftshader/src/OpenGL/libGLES_CM/
libGLES_CM.hpp 157 void (*glMultMatrixx)(const GLfixed *m);
main.cpp     [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_client_context.h 120 glMultMatrixx_client_proc_t glMultMatrixx;
gl_entry.cpp 115 void glMultMatrixx(const GLfixed* m);
    [all...]
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles.cpp 596 void glMultMatrixx(const GLfixed *m)
598 getDispatch()->glMultMatrixx(m);
    [all...]
gles_dispatch.h 131 glMultMatrixx_t glMultMatrixx;
403 glMultMatrixx_t set_glMultMatrixx(glMultMatrixx_t f) { glMultMatrixx_t retval = glMultMatrixx; glMultMatrixx = f; return retval;}
    [all...]
  /device/google/cuttlefish_common/guest/libs/eglwrapper/
gles1_wrapper_context.h 120 glMultMatrixx_wrapper_proc_t glMultMatrixx;
gles1_wrapper_entry.cpp 115 void glMultMatrixx(const GLfixed* m);
949 void glMultMatrixx(const GLfixed* m)
952 ctx->glMultMatrixx( m);
    [all...]

Completed in 364 milliseconds