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

1 2

  /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...]
  /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);
  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 116 void (GLAPIENTRY *glMultMatrixf) (const GLfloat *m);
GLEScmImp.cpp     [all...]
  /frameworks/base/opengl/libagl/
matrix.cpp 954 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/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 158 static void (GLAPIENTRY *glMultMatrixf) (const GLfloat *m);
  /external/quake/quake/src/WinQuake/
glquake.h 307 #define glMultMatrixf(...) do { glMultMatrixf(__VA_ARGS__); GLCHECK("glMultMatrixf");} while(0)
  /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...]
  /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;
  /development/tools/emulator/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(
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
gl_mangle.h     [all...]
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 212 milliseconds

1 2