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

1 2 3 4 5 6 7 8

  /frameworks/base/opengl/java/android/opengl/
EGLContext.java 21 * Wrapper class for native EGLContext objects.
24 public class EGLContext extends EGLObjectHandle {
25 private EGLContext(int handle) {
34 EGLContext that = (EGLContext) o;
ManagedEGLContext.java 25 import javax.microedition.khronos.egl.EGLContext;
41 * <p>To use, simple instantiate this class with the EGLContext you create.
54 final EGLContext mContext;
57 * Instantiate to manage the given EGLContext.
59 public ManagedEGLContext(EGLContext context) {
67 * Retrieve the EGLContext being managed by the class.
69 public EGLContext getContext() {
75 * {@link #onTerminate(EGLContext)} to be called. You <em>must</em>
76 * call this when destroying the EGLContext, so that the framework
88 * Override this method to destroy the EGLContext when appropriate
    [all...]
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLContext.java 21 * Wrapper class for native EGLContext objects.
24 public class EGLContext extends EGLObjectHandle {
25 private EGLContext(int handle) {
34 EGLContext that = (EGLContext) o;
  /frameworks/native/opengl/libs/
glestrace.h 27 void GLTrace_eglCreateContext(int version, EGLContext c);
28 void GLTrace_eglMakeCurrent(unsigned version, gl_hooks_t *hooks, EGLContext c);
  /frameworks/native/opengl/tests/angeles/include/GLES/
egltypes.h 9 typedef void *EGLContext;
18 #define EGL_NO_CONTEXT ((EGLContext)0)
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ThreadInfo.h 24 EGLWrapperContext(EGLContext p_aglContext, int _version) {
34 EGLContext aglContext;
egl_proc.h 45 typedef EGLContext (* eglCreateContext_t) (EGLDisplay, EGLConfig, EGLContext, const EGLint*);
46 typedef EGLBoolean (* eglDestroyContext_t) (EGLDisplay, EGLContext);
47 typedef EGLBoolean (* eglMakeCurrent_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext);
48 typedef EGLContext (* eglGetCurrentContext_t) ();
51 typedef EGLBoolean (* eglQueryContext_t) (EGLDisplay, EGLContext, EGLint, EGLint*);
59 typedef EGLImageKHR (* eglCreateImageKHR_t) (EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLint*);
  /external/skia/include/gpu/gl/
SkANGLEGLContext.h 32 EGLContext fOldEGLContext;
42 EGLContext fContext;
SkNativeGLContext.h 43 EGLContext fOldEGLContext;
67 EGLContext fContext;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderContext.h 34 EGLContext getEGLContext() const { return m_ctx; }
43 EGLContext m_ctx;
egl_proc.h 45 typedef EGLContext (EGLAPIENTRY *eglCreateContext_t) (EGLDisplay, EGLConfig, EGLContext, const EGLint*);
46 typedef EGLBoolean (EGLAPIENTRY *eglDestroyContext_t) (EGLDisplay, EGLContext);
47 typedef EGLBoolean (EGLAPIENTRY *eglMakeCurrent_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext);
48 typedef EGLContext (EGLAPIENTRY *eglGetCurrentContext_t) ();
51 typedef EGLBoolean (EGLAPIENTRY *eglQueryContext_t) (EGLDisplay, EGLContext, EGLint, EGLint*);
59 typedef EGLImageKHR (EGLAPIENTRY *eglCreateImageKHR_t) (EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLint*);
  /frameworks/native/opengl/libs/EGL/
egl_tls.h 37 EGLContext ctx;
50 static void setContext(EGLContext ctx);
51 static EGLContext getContext();
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglValidate.h 26 static bool releaseContext(EGLContext ctx,EGLSurface s1,EGLSurface s2);
27 static bool badContextMatch(EGLContext ctx,EGLSurface s1,EGLSurface s2);
EglDisplay.h 27 #include "EglContext.h"
54 EGLContext addContext(ContextPtr ctx );
55 ContextPtr getContext(EGLContext ctx);
56 bool removeContext(EGLContext ctx);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GaneshContext.h 55 EGLContext m_surfaceContext;
  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGLContext.java 21 public abstract class EGLContext
EGL10.java 94 EGLContext EGL_NO_CONTEXT = new com.google.android.gles_jni.EGLContextImpl(0);
99 EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list);
103 boolean eglDestroyContext(EGLDisplay display, EGLContext context);
107 EGLContext eglGetCurrentContext();
113 boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
114 boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value);
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
egl_proc.h 45 typedef EGLContext (* eglCreateContext_t) (EGLDisplay, EGLConfig, EGLContext, const EGLint*);
46 typedef EGLBoolean (* eglDestroyContext_t) (EGLDisplay, EGLContext);
47 typedef EGLBoolean (* eglMakeCurrent_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext);
48 typedef EGLContext (* eglGetCurrentContext_t) ();
51 typedef EGLBoolean (* eglQueryContext_t) (EGLDisplay, EGLContext, EGLint, EGLint*);
59 typedef EGLImageKHR (* eglCreateImageKHR_t) (EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLint*);
  /external/webkit/Source/WebKit/android/plugins/
ANPOpenGL_npapi.h 46 EGLContext (*acquireContext)(NPP instance);
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 23 EGLContext eglCreateContext ( EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list )
24 EGLBoolean eglDestroyContext ( EGLDisplay dpy, EGLContext ctx )
25 EGLBoolean eglMakeCurrent ( EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx )
26 EGLContext eglGetCurrentContext ( void )
29 EGLBoolean eglQueryContext ( EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value )
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 28 private EGLContext mEGLContext;
37 EGL10 egl = (EGL10)EGLContext.getEGL();
71 EGL10 egl = (EGL10)EGLContext.getEGL();
96 EGL10 egl = (EGL10)EGLContext.getEGL();
102 EGL10 egl = (EGL10)EGLContext.getEGL();
  /frameworks/base/media/mca/filterfw/native/core/
gl_env.h 137 int AddContext(const EGLContext& context);
150 const EGLContext& context() const {
229 std::map<int, EGLContext> contexts_;
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_context.h 50 /** GL Trace Context info associated with each EGLContext */
90 std::map<EGLContext, GLTraceContext*> mPerContextState;
106 GLTraceContext *createTraceContext(int version, EGLContext c);
107 GLTraceContext *getTraceContext(EGLContext c);
  /sdk/emulator/opengl/tests/ut_renderer/
RendererContext.h 42 EGLContext eglContext() { return m_ctx; }
100 EGLContext m_ctx;
104 RendererContext(EGLDisplay dpy, EGLContext ctx, int version) :
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLContextImpl.java 22 public class EGLContextImpl extends EGLContext {

Completed in 227 milliseconds

1 2 3 4 5 6 7 8