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

1 2 3 4 5 6 7 8

  /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);
  /external/eigen/demos/opengl/
gpuhelper.h 122 static void multMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glMultMatrixf(mat.data()); }
130 static void multMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glMultMatrixf(mat.transpose().eval().data()); }
  /external/mesa3d/src/mapi/es1api/
ABI-check 112 glMultMatrixf
  /external/swiftshader/tests/OGLSimpleCube/
OGLSimpleCube.cpp 115 glMultMatrixf(S);
131 glMultMatrixf(R);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
RotationVectorDemo.java 130 gl.glMultMatrixf(mRotationMatrix, 0);
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_ftable.h 34 {"glMultMatrixf", (void*)glMultMatrixf},
gl_client_context.h 36 glMultMatrixf_client_proc_t glMultMatrixf;
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles_ftable.h 43 {"glMultMatrixf", (void *)glMultMatrixf},
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/android/opengl/
GLU.java 79 gl.glMultMatrixf(scratch, 0);
GLES10.java     [all...]
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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
GLArrowSensorTestRenderer.java 96 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/tests/gl_jni/jni/
gl_code.cpp 79 glMultMatrixf(m);
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 90 glMultMatrixf(m);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLMessageFormatterTest.java 40 "void, glMultMatrixf, const GLfloat* m",
119 // "void, glMultMatrixf, const GLfloat* m",
121 Function.glMultMatrixf,
124 String expected = "glMultMatrixf(m = 0xbadc0ffe)";
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 693 void glMultMatrixf(
698 void glMultMatrixf(
  /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/robolectric/v1/lib/main/
opengl-api-gl1.1-android-2.1_r1.jar 
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 93 glMultMatrixf(m);
  /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/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...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES10.spec 66 void glMultMatrixf ( const GLfloat *m )

Completed in 185 milliseconds

1 2 3 4 5 6 7 8