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

1 2 3

  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLMock.java 47 // glLoadMatrixf
120 public void glLoadMatrixf(float[] m, int offset) {
141 glLoadMatrixf(m, 0);
GLStub.java 397 public void glLoadMatrixf(
402 public void glLoadMatrixf(
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 58 public void glLoadMatrixf(float[] m, int offset) {
62 public void glLoadMatrixf(FloatBuffer m) {
MatrixTrackingGL.java 366 public void glLoadMatrixf(float[] m, int offset) {
367 mCurrent.glLoadMatrixf(m, offset);
368 mgl.glLoadMatrixf(m, offset);
372 public void glLoadMatrixf(FloatBuffer m) {
374 mCurrent.glLoadMatrixf(m);
376 mgl.glLoadMatrixf(m);
  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.cpp 128 LOAD_GL_FUNC(glLoadMatrixf);
GLDispatch.h 105 void (GLAPIENTRY *glLoadMatrixf) (const GLfloat *m);
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
gles_ftable.h 40 {"glLoadMatrixf", (void *)glLoadMatrixf},
gles_dispatch.h 43 glLoadMatrixf_t glLoadMatrixf;
315 glLoadMatrixf_t set_glLoadMatrixf(glLoadMatrixf_t f) { glLoadMatrixf_t retval = glLoadMatrixf; glLoadMatrixf = f; return retval;}
    [all...]
gles.cpp 156 void glLoadMatrixf(const GLfloat *m)
158 getDispatch()->glLoadMatrixf(m);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLCanvasImpl.java 177 gl.glLoadMatrixf(mMatrixValues, 0);
195 gl.glLoadMatrixf(mMatrixValues, 0);
210 gl.glLoadMatrixf(mMatrixValues, 0);
245 gl.glLoadMatrixf(mMatrixValues, 0);
268 mGL.glLoadMatrixf(mMatrixValues, 0);
795 mGL.glLoadMatrixf(mTextureMatrixValues, 0);
  /external/quake/quake/src/WinQuake/
glquake.h 304 #define glLoadMatrixf(...) do { glLoadMatrixf(__VA_ARGS__); GLCHECK("glLoadMatrixf");} while(0)
gl_rmain.cpp 1232 glLoadMatrixf(mv);
1455 glLoadMatrixf (r_base_world_matrix);
    [all...]
  /external/skia/gpu/src/mac/
GrGLDefaultInterface_mac.cpp 75 gDefaultInterface.fLoadMatrixf = glLoadMatrixf;
  /external/skia/gpu/src/mesa/
GrGLDefaultInterface_mesa.cpp 90 gDefaultInterface.fLoadMatrixf = glLoadMatrixf;
  /external/skia/gpu/src/unix/
GrGLDefaultInterface_unix.cpp 91 gDefaultInterface.fLoadMatrixf = glLoadMatrixf;
  /external/skia/gpu/src/win/
GrGLDefaultInterface_win.cpp 72 gDefaultInterface.fLoadMatrixf = glLoadMatrixf;
  /frameworks/base/opengl/java/android/opengl/
GLES10.java     [all...]
GLErrorWrapper.java 480 public void glLoadMatrixf(float[] m, int offset) {
482 mgl.glLoadMatrixf(m, offset);
486 public void glLoadMatrixf(FloatBuffer m) {
488 mgl.glLoadMatrixf(m);
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 629 void glLoadMatrixf(
634 void glLoadMatrixf(
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 43 glLoadMatrixf_t glLoadMatrixf;
  /frameworks/base/services/surfaceflinger/
Layer.cpp 285 glLoadMatrixf(mTextureMatrix);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 619 // C function void glLoadMatrixf ( const GLfloat *m )
621 public native void glLoadMatrixf(
626 // C function void glLoadMatrixf ( const GLfloat *m )
628 public native void glLoadMatrixf(
    [all...]
  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES10.spec 58 void glLoadMatrixf ( const GLfloat *m )
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
GLDispatch.cpp 167 void (GLAPIENTRY *GLDispatch::glLoadMatrixf)(const GLfloat *) = NULL;
420 LOAD_GL_FUNC(glLoadMatrixf);
  /external/quake/quake/src/QW/client/
gl_rsurf.c 948 glLoadMatrixf (r_world_matrix);
998 glLoadMatrixf (r_world_matrix);
    [all...]

Completed in 177 milliseconds

1 2 3