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

1 2 3

  /frameworks/base/opengl/java/android/opengl/
GLU.java 79 gl.glMultMatrixf(scratch, 0);
GLErrorWrapper.java 552 public void glMultMatrixf(float[] m, int offset) {
554 mgl.glMultMatrixf(m, offset);
558 public void glMultMatrixf(FloatBuffer m) {
560 mgl.glMultMatrixf(m);
    [all...]
GLLogWrapper.java     [all...]
GLES10.java     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
GLArrowSensorTestRenderer.java 96 gl.glMultMatrixf(mRotationMatrix, 0);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 78 public void glMultMatrixf(float[] m, int offset) {
83 public void glMultMatrixf(FloatBuffer m) {
85 glMultMatrixf(mTemp, MATRIX_SIZE);
92 glMultMatrixf(mTemp, MATRIX_SIZE);
99 glMultMatrixf(mTemp, MATRIX_SIZE);
MatrixTrackingGL.java 441 public void glMultMatrixf(float[] m, int offset) {
442 mCurrent.glMultMatrixf(m, offset);
443 mgl.glMultMatrixf(m, offset);
447 public void glMultMatrixf(FloatBuffer m) {
449 mCurrent.glMultMatrixf(m);
451 mgl.glMultMatrixf(m);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
RotationVectorDemo.java 130 gl.glMultMatrixf(mRotationMatrix, 0);
  /development/samples/Compass/src/com/example/android/compass/
CompassActivity.java 114 * glMultMatrixf() expects a column-major matrix, we can use mR
117 gl.glMultMatrixf(mR, 0);
119 //gl.glMultMatrixf(mI, 0);
  /frameworks/native/opengl/libagl/
matrix.cpp 943 void glMultMatrixf(const GLfloat* m)
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 464 public void glMultMatrixf(FloatBuffer m) {
465 ((GL10)mGL).glMultMatrixf(m);
469 public void glMultMatrixf(float[] m, int offset) {
470 ((GL10)mGL).glMultMatrixf(m, offset);
  /external/swiftshader/src/OpenGL/libGLES_CM/
libGLES_CM.hpp 156 void (*glMultMatrixf)(const GLfloat *m);
main.cpp     [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 708 // C function void glMultMatrixf ( const GLfloat *m )
710 public native void glMultMatrixf(
715 // C function void glMultMatrixf ( const GLfloat *m )
717 public native void glMultMatrixf(
    [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_client_context.h 36 glMultMatrixf_client_proc_t glMultMatrixf;
gl_entry.cpp 31 void glMultMatrixf(const GLfloat* m);
445 void glMultMatrixf(const GLfloat* m)
448 ctx->glMultMatrixf(ctx, m);
    [all...]
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles.cpp 171 void glMultMatrixf(const GLfloat *m)
173 getDispatch()->glMultMatrixf(m);
    [all...]
gles_dispatch.h 46 glMultMatrixf_t glMultMatrixf;
318 glMultMatrixf_t set_glMultMatrixf(glMultMatrixf_t f) { glMultMatrixf_t retval = glMultMatrixf; glMultMatrixf = f; return retval;}
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 693 void glMultMatrixf(
698 void glMultMatrixf(
  /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 
  /external/swiftshader/src/OpenGL/libGL/
libGL.cpp     [all...]
  /frameworks/base/libs/hwui/debug/
gles_redefine.h 559 #define glMultMatrixf wrap_glMultMatrixf
    [all...]
gles_undefine.h 558 #undef glMultMatrixf
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLProtoBuf.java 286 glMultMatrixf(255, 255),
    [all...]

Completed in 167 milliseconds

1 2 3