/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...] |
gles.cpp | 156 void glLoadMatrixf(const GLfloat *m) 158 getDispatch()->glLoadMatrixf(m); [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);
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
GLES11RenderEngine.cpp | 163 glLoadMatrixf(texture.getMatrix().asArray());
|
/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 | |
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
GLDispatch.h | 43 glLoadMatrixf_t glLoadMatrixf;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/ |
stw_context.c | 728 &glLoadMatrixf,
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
stw_context.c | 728 &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 | 422 GLES10.glLoadMatrixf(mTexMatrix, 0);
|
/sdk/emulator/opengl/host/libs/Translator/GLcommon/ |
GLDispatch.cpp | 167 void (GLAPIENTRY *GLDispatch::glLoadMatrixf)(const GLfloat *) = NULL; 420 LOAD_GL_FUNC(glLoadMatrixf);
|