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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/opengl/java/android/opengl/
EGLContext.java 21 * Wrapper class for native EGLContext objects.
24 public class EGLContext extends EGLObjectHandle {
25 private EGLContext(long handle) {
32 if (!(o instanceof EGLContext)) return false;
34 EGLContext that = (EGLContext) o;
  /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(long handle) {
32 if (!(o instanceof EGLContext)) return false;
34 EGLContext that = (EGLContext) o;
  /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*);
  /frameworks/native/opengl/libs/EGL/
egl_tls.h 36 EGLContext ctx;
49 static void setContext(EGLContext ctx);
50 static EGLContext getContext();
  /external/autotest/client/deps/glbench/src/
glinterface.h 29 typedef void *EGLContext; // Forward declaration from EGL.h.
30 typedef EGLContext GLContext;
egl_stuff.h 51 EGLContext context_;
  /cts/tests/openglperf2/jni/primitive/contextswitch/
ContextSwitchRenderer.h 27 EGLContext* mContexts;
  /external/deqp/framework/egl/
egluGLContextFactory.hpp 43 virtual eglw::EGLContext getEGLContext (void) const = 0;
egluUnique.hpp 77 UniqueContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLContext context);
80 eglw::EGLContext operator* (void) const { return m_context; }
86 eglw::EGLContext m_context;
96 ScopedCurrentContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLSurface draw, eglw::EGLSurface read, eglw::EGLContext context);
egluGLUtil.hpp 42 eglw::EGLContext createGLContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config, const glu::ContextType& contextType);
  /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);
104 boolean eglDestroyContext(EGLDisplay display, EGLContext context);
108 EGLContext eglGetCurrentContext();
114 boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
115 boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value);
  /external/mesa3d/include/GL/
mesa_glinterop.h 66 typedef void *EGLContext;
255 * and EGLContext.
258 MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context,
281 * EGLDisplay and EGLContext.
284 MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context,
291 typedef int (PFNMESAGLINTEROPEGLQUERYDEVICEINFOPROC)(EGLDisplay dpy, EGLContext context,
296 typedef int (PFNMESAGLINTEROPEGLEXPORTOBJECTPROC)(EGLDisplay dpy, EGLContext context,
  /external/mesa3d/src/egl/main/
eglcontext.h 112 static inline EGLContext
116 return (EGLContext) ctx;
136 _eglLookupContext(EGLContext context, _EGLDisplay *dpy)
148 static inline EGLContext
153 (EGLContext) ctx : EGL_NO_CONTEXT;
  /cts/tests/tests/opengl/src/android/opengl/cts/
EglContextTest.java 20 import android.opengl.EGLContext;
40 EGLContext eglContext = null;
43 eglContext = Egl14Utils.createEglContext(eglDisplay);
44 Egl14Utils.destroyEglContext(eglDisplay, eglContext);
47 eglContext = null;
50 if (eglContext != null) {
51 EGL14.eglDestroyContext(eglDisplay, eglContext);
EglSurfacesTest.java 27 import javax.microedition.khronos.egl.EGLContext;
41 EGL10 egl = (EGL10) EGLContext.getEGL();
69 EGLContext context = egl.eglCreateContext(display, config,
  /external/deqp/modules/egl/
teglColorClearCase.hpp 52 const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts);
70 const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts);
  /frameworks/base/libs/hwui/debug/
nullegl.cpp 29 EGLContext context;
121 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
122 EGLContext share_context,
124 return (EGLContext) malloc(sizeof(void*));
126 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) {
132 EGLSurface read, EGLContext ctx) {
139 EGLContext eglGetCurrentContext(void) {
159 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) {
  /device/generic/goldfish-opengl/system/egl/
eglDisplay.h 65 void onCreateContext(EGLContext ctx);
68 void onDestroyContext(EGLContext ctx);
102 typedef std::unordered_set<EGLContext> EGLContextSet;
105 typedef std::hash_set<EGLContext> EGLContextSet;
  /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 141 int AddContext(const EGLContext& context);
154 const EGLContext& context() const {
233 std::map<int, EGLContext> contexts_;
  /cts/tests/tests/hardware/src/android/hardware/cts/
Egl14Utils.java 21 import android.opengl.EGLContext;
57 static EGLContext createEglContext(EGLDisplay eglDisplay) {
64 static EGLContext createEglContext(EGLDisplay eglDisplay, EGLConfig eglConfig, int version) {
71 * Destroys the GL context identified by {@code eglDisplay} and {@code eglContext}.
73 static void destroyEglContext(EGLDisplay eglDisplay, EGLContext eglContext) {
83 EGL14.eglDestroyContext(eglDisplay, eglContext);

Completed in 2492 milliseconds

1 2 3 4 5 6 7 8 91011>>