HomeSort by relevance Sort by last modified time
    Searched defs:glLoadMatrixx (Results 1 - 25 of 67) sorted by null

1 2 3

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 66 public void glLoadMatrixx(int[] m, int offset) {
72 public void glLoadMatrixx(IntBuffer m) {
MatrixTrackingGL.java 380 public void glLoadMatrixx(int[] m, int offset) {
381 mCurrent.glLoadMatrixx(m, offset);
382 mgl.glLoadMatrixx(m, offset);
386 public void glLoadMatrixx(IntBuffer m) {
388 mCurrent.glLoadMatrixx(m);
390 mgl.glLoadMatrixx(m);
  /frameworks/native/opengl/libagl/
matrix.cpp 935 void glLoadMatrixx(const GLfixed* m)
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 414 public void glLoadMatrixx(IntBuffer m) {
415 ((GL10)mGL).glLoadMatrixx(m);
419 public void glLoadMatrixx(int[] m, int offset) {
420 ((GL10)mGL).glLoadMatrixx(m, offset);
  /external/swiftshader/src/OpenGL/libGLES_CM/
libGLES_CM.hpp 149 void (*glLoadMatrixx)(const GLfixed *m);
main.cpp     [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 633 // C function void glLoadMatrixx ( const GLfixed *m )
635 public native void glLoadMatrixx(
640 // C function void glLoadMatrixx ( const GLfixed *m )
642 public native void glLoadMatrixx(
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 492 public void glLoadMatrixx(int[] m, int offset) {
494 mgl.glLoadMatrixx(m, offset);
498 public void glLoadMatrixx(IntBuffer m) {
500 mgl.glLoadMatrixx(m);
    [all...]
GLLogWrapper.java     [all...]
GLES10.java 808 // C function void glLoadMatrixx ( const GLfixed *m )
810 public static native void glLoadMatrixx(
    [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_client_context.h 115 glLoadMatrixx_client_proc_t glLoadMatrixx;
gl_entry.cpp 110 void glLoadMatrixx(const GLfixed* m);
923 void glLoadMatrixx(const GLfixed* m)
926 ctx->glLoadMatrixx(ctx, m);
    [all...]
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles.cpp 571 void glLoadMatrixx(const GLfixed *m)
573 getDispatch()->glLoadMatrixx(m);
    [all...]
gles_dispatch.h 126 glLoadMatrixx_t glLoadMatrixx;
398 glLoadMatrixx_t set_glLoadMatrixx(glLoadMatrixx_t f) { glLoadMatrixx_t retval = glLoadMatrixx; glLoadMatrixx = f; return retval;}
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 638 void glLoadMatrixx(
643 void glLoadMatrixx(
  /external/robolectric/v1/lib/main/
opengl-api-gl1.1-android-2.1_r1.jar 
  /prebuilts/tools/common/m2/repository/org/khronos/opengl-api/gl1.1-android-2.1_r1/
opengl-api-gl1.1-android-2.1_r1.jar 
  /frameworks/base/libs/hwui/debug/
gles_redefine.h 530 #define glLoadMatrixx wrap_glLoadMatrixx
    [all...]
gles_undefine.h 529 #undef glLoadMatrixx
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLProtoBuf.java 268 glLoadMatrixx(237, 237),
865 case 237: return glLoadMatrixx;
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 

Completed in 639 milliseconds

1 2 3