HomeSort by relevance Sort by last modified time
    Searched defs:glMultMatrixf (Results 1 - 25 of 44) 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);
  /frameworks/native/opengl/libagl/
matrix.cpp 954 void glMultMatrixf(const GLfloat* m)
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 116 void (GLAPIENTRY *glMultMatrixf) (const GLfloat *m);
GLEScmImp.cpp     [all...]
  /external/quake/quake/src/WinQuake/
glquake.h 307 #define glMultMatrixf(...) do { glMultMatrixf(__VA_ARGS__); GLCHECK("glMultMatrixf");} while(0)
  /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);
  /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...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
GLStub.java 461 public void glMultMatrixf(
466 public void glMultMatrixf(
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLDispatch.cpp 178 void (GLAPIENTRY *GLDispatch::glMultMatrixf)(const GLfloat *) = NULL;
431 LOAD_GL_FUNC(glMultMatrixf);
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 158 static void (GLAPIENTRY *glMultMatrixf) (const GLfloat *m);
  /device/generic/goldfish/opengl/system/GLESv1_enc/
gl_entry.cpp 32 void glMultMatrixf(const GLfloat* m);
447 void glMultMatrixf(const GLfloat* m)
450 ctx->glMultMatrixf(ctx, m);
    [all...]
gl_client_context.h 34 glMultMatrixf_client_proc_t glMultMatrixf;
326 virtual glMultMatrixf_client_proc_t set_glMultMatrixf(glMultMatrixf_client_proc_t f) { glMultMatrixf_client_proc_t retval = glMultMatrixf; glMultMatrixf = f; return retval;}
    [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...]
  /sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 46 glMultMatrixf_t glMultMatrixf;
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 693 void glMultMatrixf(
698 void glMultMatrixf(
  /external/robolectric/lib/main/
opengl-api-gl1.1-android-2.1_r1.jar 
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp 896 const GLMessage_Function GLMessage::glMultMatrixf;
    [all...]

Completed in 740 milliseconds

1 2