/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/tools/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLDispatch.cpp | 139 LOAD_GL_FUNC(glMultMatrixf);
|
GLDispatch.h | 116 void (GLAPIENTRY *glMultMatrixf) (const GLfloat *m);
|
/development/tools/emulator/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...] |
gles.cpp | 171 void glMultMatrixf(const GLfloat *m) 173 getDispatch()->glMultMatrixf(m); [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...] |
/external/quake/quake/src/WinQuake/ |
glquake.h | 307 #define glMultMatrixf(...) do { glMultMatrixf(__VA_ARGS__); GLCHECK("glMultMatrixf");} while(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/base/opengl/tests/gl_jni/jni/ |
gl_code.cpp | 79 glMultMatrixf(m);
|
/frameworks/base/opengl/tests/tritex/ |
tritex.cpp | 90 glMultMatrixf(m);
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
GL10.java | 693 void glMultMatrixf( 698 void glMultMatrixf(
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/ |
GLStub.java | 461 public void glMultMatrixf( 466 public void glMultMatrixf(
|
/development/tools/emulator/opengl/host/libs/libOpenglRender/ |
GLDispatch.h | 46 glMultMatrixf_t glMultMatrixf;
|
/frameworks/base/opengl/tests/gl_basic/ |
gl_basic.cpp | 93 glMultMatrixf(m);
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
GLImpl.java | 707 // C function void glMultMatrixf ( const GLfloat *m ) 709 public native void glMultMatrixf( 714 // C function void glMultMatrixf ( const GLfloat *m ) 716 public native void glMultMatrixf( [all...] |
/frameworks/base/opengl/tools/glgen/specs/gles11/ |
GLES10.spec | 66 void glMultMatrixf ( const GLfloat *m )
|
/development/tools/emulator/opengl/host/libs/Translator/GLcommon/ |
GLDispatch.cpp | 178 void (GLAPIENTRY *GLDispatch::glMultMatrixf)(const GLfloat *) = NULL; 431 LOAD_GL_FUNC(glMultMatrixf);
|
/development/ndk/platforms/android-4/include/GLES/ |
gl.h | 615 GL_API void GL_APIENTRY glMultMatrixf (const GLfloat *m); [all...] |
/development/tools/emulator/opengl/host/libs/Translator/include/GLES/ |
gl.h | 616 GL_API void GL_APIENTRY glMultMatrixf (const GLfloat *m); [all...] |
/development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/ |
GLDispatch.h | 158 static void (GLAPIENTRY *glMultMatrixf) (const GLfloat *m);
|