Searched defs:gl (Results 26 - 37 of 37) sorted by relevance

12

/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java283 public void onDrawFrame(GL10 gl) { argument
287 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
291 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java286 public void onDrawFrame(GL10 gl) { argument
290 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
294 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java93 public void onDrawFrame(GL10 gl) { argument
144 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
152 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java286 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
293 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
299 public void onDrawFrame(GL10 gl) { argument
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp186 int gl; member in struct:android::graphics_memory_pss
212 ALOGW("failed to get gl pss: %zd", pss);
215 graphics_mem->gl = pss / 1024;
498 stats[HEAP_GL].pss = graphics_mem.gl;
499 stats[HEAP_GL].privateDirty = graphics_mem.gl;
593 pss = uss = memtrack = graphics_mem.graphics + graphics_mem.gl + graphics_mem.other;
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java653 * GL wrap(GL gl) {
654 * return new MyGLImplementation(gl);
665 * Wraps a gl interface in another gl interface.
666 * @param gl a GL interface that is to be wrapped.
669 GL wrap(GL gl); argument
728 * @param gl the GL interface. Use <code>instanceof</code> to
733 void onSurfaceCreated(GL10 gl, EGLConfig config); argument
744 * void onSurfaceChanged(GL10 gl, int width, int height) {
745 * gl
758 onSurfaceChanged(GL10 gl, int width, int height) argument
775 onDrawFrame(GL10 gl) argument
[all...]
H A DGLErrorWrapper.java38 public GLErrorWrapper(GL gl, int configFlags) { argument
39 super(gl);
H A DGLLogWrapper.java43 public GLLogWrapper(GL gl, Writer log, boolean logArgumentNames) { argument
44 super(gl);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java2398 protected int getOffset(GridLayout gl, View c, Alignment a, int size, boolean horizontal) { argument
2399 return before - a.getAlignmentValue(c, size, gl.getLayoutMode());
2402 protected final void include(GridLayout gl, View c, Spec spec, Axis axis, int size) { argument
2407 int before = alignment.getAlignmentValue(c, size, gl.getLayoutMode());
2956 protected int getOffset(GridLayout gl, View c, Alignment a, int size, boolean hrz) {
2957 return max(0, super.getOffset(gl, c, a, size, hrz));
/frameworks/native/opengl/libagl/
H A Dcontext.h32 #include <GLES/gl.h>
48 namespace gl { namespace in namespace:android
641 }; // namespace gl
644 using namespace android::gl;
H A Degl.cpp40 #include <GLES/gl.h>
88 namespace gl { namespace in namespace:android
90 }; // namespace gl
152 ogles_context_t* const gl = static_cast<ogles_context_t*>(ctx); local
153 return static_cast<egl_context_t*>(gl->rasterizer.base);
177 virtual EGLBoolean bindDrawSurface(ogles_context_t* gl) = 0;
178 virtual EGLBoolean bindReadSurface(ogles_context_t* gl) = 0;
247 virtual EGLBoolean bindDrawSurface(ogles_context_t* gl);
248 virtual EGLBoolean bindReadSurface(ogles_context_t* gl);
606 EGLBoolean egl_window_surface_v2_t::bindDrawSurface(ogles_context_t* gl) argument
621 bindReadSurface(ogles_context_t* gl) argument
704 bindDrawSurface(ogles_context_t* gl) argument
719 bindReadSurface(ogles_context_t* gl) argument
796 bindDrawSurface(ogles_context_t* gl) argument
803 bindReadSurface(ogles_context_t* gl) argument
1220 makeCurrent(ogles_context_t* gl) argument
1789 ogles_context_t* gl = (ogles_context_t*)ctx; local
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java2288 protected int getOffset(GridLayout gl, View c, Alignment a, int size, boolean horizontal) { argument
2289 return before - a.getAlignmentValue(c, size, ViewGroupCompat.getLayoutMode(gl));
2292 protected final void include(GridLayout gl, View c, Spec spec, Axis axis, int size) { argument
2297 int before = alignment.getAlignmentValue(c, size, ViewGroupCompat.getLayoutMode(gl));
2882 protected int getOffset(GridLayout gl, View c, Alignment a, int size, boolean hrz) {
2883 return max(0, super.getOffset(gl, c, a, size, hrz));

Completed in 332 milliseconds

12