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

1 2 3 4 5 6

  /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()); }
  /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 34 glMultMatrixf_client_proc_t glMultMatrixf;
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
gles_ftable.h 43 {"glMultMatrixf", (void *)glMultMatrixf},
  /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...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.cpp 139 LOAD_GL_FUNC(glMultMatrixf);
GLDispatch.h 116 void (GLAPIENTRY *glMultMatrixf) (const GLfloat *m);
  /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/lib/main/
opengl-api-gl1.1-android-2.1_r1.jar 
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 93 glMultMatrixf(m);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 46 glMultMatrixf_t glMultMatrixf;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_context.c 731 &glMultMatrixf,
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_context.c 731 &glMultMatrixf,
  /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...]

Completed in 140 milliseconds

1 2 3 4 5 6