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

1 2 3 4

  /packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
GLMock.java 49 // glLoadMatrixf
122 public void glLoadMatrixf(float[] m, int offset) {
143 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);
  /external/eigen/demos/opengl/
gpuhelper.h 120 static void loadMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glLoadMatrixf(mat.data()); }
128 static void loadMatrix(const Matrix<float, 4,4, _Flags, 4,4>& mat) { glLoadMatrixf(mat.transpose().eval().data()); }
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 187 gl.glLoadMatrixf(mMatrixValues, 0);
205 gl.glLoadMatrixf(mMatrixValues, 0);
221 gl.glLoadMatrixf(mMatrixValues, 0);
273 gl.glLoadMatrixf(mMatrixValues, 0);
297 mGL.glLoadMatrixf(mMatrixValues, 0);
716 mGL.glLoadMatrixf(mTextureMatrixValues, 0);
722 mGL.glLoadMatrixf(mTextureTransform, 0);
    [all...]
  /device/generic/goldfish/opengl/system/GLESv1_enc/
gl_ftable.h 31 {"glLoadMatrixf", (void*)glLoadMatrixf},
gl_client_context.h 31 glLoadMatrixf_client_proc_t glLoadMatrixf;
323 virtual glLoadMatrixf_client_proc_t set_glLoadMatrixf(glLoadMatrixf_client_proc_t f) { glLoadMatrixf_client_proc_t retval = glLoadMatrixf; glLoadMatrixf = f; return retval;}
    [all...]
  /device/generic/goldfish/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...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.cpp 128 LOAD_GL_FUNC(glLoadMatrixf);
GLDispatch.h 105 void (GLAPIENTRY *glLoadMatrixf) (const GLfloat *m);
  /external/quake/quake/src/WinQuake/
glquake.h 304 #define glLoadMatrixf(...) do { glLoadMatrixf(__VA_ARGS__); GLCHECK("glLoadMatrixf");} while(0)
  /frameworks/base/opengl/java/android/opengl/
GLES10.java 795 // C function void glLoadMatrixf ( const GLfloat *m )
797 public static native void glLoadMatrixf(
802 // C function void glLoadMatrixf ( const GLfloat *m )
804 public static native void glLoadMatrixf(
    [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(
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 404 public void glLoadMatrixf(FloatBuffer m) {
405 ((GL10)mGL).glLoadMatrixf(m);
409 public void glLoadMatrixf(float[] m, int offset) {
410 ((GL10)mGL).glLoadMatrixf(m, offset);
  /external/robolectric/lib/main/
opengl-api-gl1.1-android-2.1_r1.jar 
  /external/skia/src/gpu/gl/win/
GrGLCreateNativeInterface_win.cpp 74 interface->fLoadMatrixf = glLoadMatrixf;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 43 glLoadMatrixf_t glLoadMatrixf;
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 620 // C function void glLoadMatrixf ( const GLfloat *m )
622 public native void glLoadMatrixf(
627 // C function void glLoadMatrixf ( const GLfloat *m )
629 public native void glLoadMatrixf(
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/
gltrace.proto 262 glLoadMatrixf = 236;
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES10.spec 58 void glLoadMatrixf ( const GLfloat *m )
  /frameworks/base/services/java/com/android/server/power/
ElectronBeam.java 421 GLES10.glLoadMatrixf(mTexMatrix, 0);
  /external/quake/quake/src/QW/client/
gl_rsurf.c 948 glLoadMatrixf (r_world_matrix);
998 glLoadMatrixf (r_world_matrix);
    [all...]

Completed in 680 milliseconds

1 2 3 4