Home
last modified time | relevance | path

Searched refs:EGLContext (Results 1 – 25 of 76) sorted by relevance

1234

/external/autotest/client/site_tests/graphics_GLAPICheck/src/
Dgles_APICheck.cc38 EGLContext (*FP_eglCreateContext)(EGLDisplay dpy,
40 EGLContext share_list,
53 EGLContext ctx) = NULL;
54 EGLBoolean (*FP_eglDestroyContext)(EGLDisplay dpy, EGLContext ctx) = NULL;
80 typedef EGLContext (*FT_eglCreateContext)(EGLDisplay, EGLConfig,
81 EGLContext, const EGLint*);
88 EGLSurface, EGLContext);
89 typedef EGLBoolean (*FT_eglDestroyContext)(EGLDisplay, EGLContext);
161 EGLContext* egl_context, in InitGraphics()
235 EGLContext egl_context, in ExitGraphics()
[all …]
/external/mesa3d/src/egl/main/
Deglcontext.h107 static INLINE EGLContext
111 return (EGLContext) ctx; in _eglLinkContext()
131 _eglLookupContext(EGLContext context, _EGLDisplay *dpy) in _eglLookupContext()
143 static INLINE EGLContext
148 (EGLContext) ctx : EGL_NO_CONTEXT; in _eglGetContextHandle()
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DEglBase10.java38 import javax.microedition.khronos.egl.EGLContext;
51 private EGLContext eglContext;
58 private final EGLContext eglContext;
60 public Context(EGLContext eglContext) { in Context()
67 this.egl = (EGL10) EGLContext.getEGL(); in EglBase10()
287 private EGLContext createEglContext( in createEglContext()
290 EGLContext rootContext = in createEglContext()
292 EGLContext eglContext = in createEglContext()
DEglBase14.java34 import android.opengl.EGLContext;
51 private EGLContext eglContext;
65 private final android.opengl.EGLContext egl14Context;
67 Context(android.opengl.EGLContext eglContext) { in Context()
242 private static EGLContext createEglContext( in createEglContext()
245 EGLContext rootContext = in createEglContext()
247 EGLContext eglContext = in createEglContext()
/external/mesa3d/include/EGL/
Degl.h47 typedef void *EGLContext; typedef
69 #define EGL_NO_CONTEXT ((EGLContext)0)
297 EGLAPI EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, EGLConfig config,
298 EGLContext share_context,
300 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx);
302 EGLSurface read, EGLContext ctx);
304 EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext(void);
307 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext(EGLDisplay dpy, EGLContext ctx,
Deglmesaext.h87 EGLAPI EGLBoolean EGLAPIENTRY eglCopyContextMESA(EGLDisplay dpy, EGLContext source, EGLContext dest…
90 …Boolean (EGLAPIENTRYP PFNEGLCOPYCONTEXTMESA) (EGLDisplay dpy, EGLContext source, EGLContext dest, …
/external/deqp/framework/egl/
DegluUnique.hpp77 UniqueContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLContext context);
80 eglw::EGLContext operator* (void) const { return m_context; } in operator *()
86 eglw::EGLContext m_context;
96 … eglw::EGLDisplay display, eglw::EGLSurface draw, eglw::EGLSurface read, eglw::EGLContext context);
DegluCallLogWrapperApi.inl12 eglw::EGLContext eglCreateContext (eglw::EGLDisplay dpy, eglw::EGLConfig config, eglw::E…
13 eglw::EGLImage eglCreateImage (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::EGLen…
14 eglw::EGLImageKHR eglCreateImageKHR (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::E…
25 eglw::EGLBoolean eglDestroyContext (eglw::EGLDisplay dpy, eglw::EGLContext ctx);
33 eglw::EGLContext eglGetCurrentContext (void);
45 …nt (eglw::EGLDisplay dpy, eglw::EGLSurface draw, eglw::EGLSurface read, eglw::EGLContext ctx);
47 eglw::EGLBoolean eglQueryContext (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::EGL…
DegluUnique.cpp68 UniqueContext::UniqueContext (const Library& egl, EGLDisplay display, EGLContext context) in UniqueContext()
86 …text (const Library& egl, EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context) in ScopedCurrentContext()
DegluCallLogWrapper.cpp230 eglw::EGLContext context;
231 EGLContextFmt (eglw::EGLContext context_) : context(context_) {} in EGLContextFmt()
234 inline EGLContextFmt getEGLContextStr (eglw::EGLContext context) { return EGLContextFmt(context); } in getEGLContextStr()
DegluGLUtil.cpp79 EGLContext createGLContext (const Library& egl, EGLDisplay display, EGLContext eglConfig, const glu… in createGLContext()
82 EGLContext context = EGL_NO_CONTEXT; in createGLContext()
/external/deqp/framework/egl/wrapper/
DeglwFuncPtrLibraryDecl.inl12 EGLContext createContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, c…
13 EGLImage createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer …
14 EGLImageKHR createImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBu…
25 EGLBoolean destroyContext (EGLDisplay dpy, EGLContext ctx) const;
33 EGLContext getCurrentContext (void) const;
45 EGLBoolean makeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext c…
47 EGLBoolean queryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *valu…
DeglwLibrary.inl12 virtual EGLContext createContext (EGLDisplay dpy, EGLConfig config, EGLContext share_co…
13 virtual EGLImage createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClien…
14 virtual EGLImageKHR createImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGL…
25 virtual EGLBoolean destroyContext (EGLDisplay dpy, EGLContext ctx) const …
33 virtual EGLContext getCurrentContext (void) const = 0;
45 … makeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) const …
47 virtual EGLBoolean queryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLi…
DeglwApi.inl69 EGLContext eglwCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_contex…
70 EGLImage eglwCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuf…
71 EGLImageKHR eglwCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClie…
82 EGLBoolean eglwDestroyContext (EGLDisplay dpy, EGLContext ctx);
90 EGLContext eglwGetCurrentContext ();
102 …an eglwMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
104 EGLBoolean eglwQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *…
DeglwFunctionTypes.inl12 typedef EGLW_APICALL EGLContext (EGLW_APIENTRY* eglCreateContextFunc) (EGLDisplay dpy, …
13 …mage (EGLW_APIENTRY* eglCreateImageFunc) (EGLDisplay dpy, EGLContext ctx, EGLenum tar…
14 …KHR (EGLW_APIENTRY* eglCreateImageKHRFunc) (EGLDisplay dpy, EGLContext ctx, EGLenum tar…
25 …ALL EGLBoolean (EGLW_APIENTRY* eglDestroyContextFunc) (EGLDisplay dpy, EGLContext ctx);
33 typedef EGLW_APICALL EGLContext (EGLW_APIENTRY* eglGetCurrentContextFunc) (void);
45 …ENTRY* eglMakeCurrentFunc) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
47 …lean (EGLW_APIENTRY* eglQueryContextFunc) (EGLDisplay dpy, EGLContext ctx, EGLint attr…
DeglwFuncPtrLibraryImpl.inl37 EGLContext FuncPtrLibrary::createContext (EGLDisplay dpy, EGLConfig config, EGLContext share_contex…
42 EGLImage FuncPtrLibrary::createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuff…
47 EGLImageKHR FuncPtrLibrary::createImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClie…
102 EGLBoolean FuncPtrLibrary::destroyContext (EGLDisplay dpy, EGLContext ctx) const
142 EGLContext FuncPtrLibrary::getCurrentContext (void) const
202 …uncPtrLibrary::makeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) const
212 EGLBoolean FuncPtrLibrary::queryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *…
/external/deqp/modules/egl/
DteglQueryContextTests.cpp95 …void executeForContext (EGLDisplay display, EGLContext context, EGLSurface surface, const Config& … in executeForContext()
106 const EGLContext gotContext = eglGetCurrentContext(); in executeForContext()
137 …void executeForContext (EGLDisplay display, EGLContext context, EGLSurface surface, const Config& … in executeForContext()
148 const EGLContext gotReadSurface = eglGetCurrentSurface(EGL_READ); in executeForContext()
151 const EGLContext gotDrawSurface = eglGetCurrentSurface(EGL_DRAW); in executeForContext()
179 …void executeForContext (EGLDisplay display, EGLContext context, EGLSurface surface, const Config& … in executeForContext()
220 EGLint getContextAttrib (EGLDisplay display, EGLContext context, EGLint attrib) in getContextAttrib()
229 …void executeForContext (EGLDisplay display, EGLContext context, EGLSurface surface, const Config& … in executeForContext()
DteglColorClearCase.cpp168 …Surface surface, const Config& config, const std::vector<std::pair<EGLint, EGLContext> >& contexts) in executeForContexts()
194 EGLContext context = contexts[0].second; in executeForContexts()
208 …for (vector<std::pair<EGLint, EGLContext> >::const_iterator ctxIter = contexts.begin(); ctxIter !=… in executeForContexts()
211 EGLContext context = ctxIter->second; in executeForContexts()
231 EGLContext context = contexts[0].second; in executeForContexts()
280 …ColorClearThread (const Library& egl, EGLDisplay display, EGLSurface surface, EGLContext context, … in ColorClearThread()
318 EGLContext m_context;
329 …Surface surface, const Config& config, const std::vector<std::pair<EGLint, EGLContext> >& contexts) in executeForContexts()
400 EGLContext context = contexts[0].second; in executeForContexts()
DteglColorClearCase.hpp52 const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts);
70 const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts);
/external/skia/src/gpu/gl/command_buffer/
DSkCommandBufferGLContext.cpp22 typedef void *EGLContext; typedef
32 #define EGL_NO_CONTEXT ((EGLContext)0)
69 typedef EGLContext (*CreateContextProc)(EGLDisplay dpy, EGLConfig config, EGLContext share_context,…
70 typedef EGLBoolean (*DestroyContextProc)(EGLDisplay dpy, EGLContext ctx);
71 typedef EGLBoolean (*MakeCurrentProc)(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext
/external/autotest/client/deps/glbench/src/
Dglinterface.h29 typedef void *EGLContext; // Forward declaration from EGL.h. typedef
30 typedef EGLContext GLContext;
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/
DGLSurfaceView20.java18 import javax.microedition.khronos.egl.EGLContext;
143 public EGLContext createContext (EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { in createContext()
148 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); in createContext()
160 public void destroyContext (EGL10 egl, EGLDisplay display, EGLContext context) { in destroyContext()
DGLSurfaceView20API18.java18 import javax.microedition.khronos.egl.EGLContext;
135 public EGLContext createContext (EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { in createContext()
141 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); in createContext()
146 public void destroyContext (EGL10 egl, EGLDisplay display, EGLContext context) { in destroyContext()
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
DViEAndroidGLES20.java17 import javax.microedition.khronos.egl.EGLContext;
88 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { in createContext()
92 EGLContext context = egl.eglCreateContext(display, eglConfig, in createContext()
98 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) { in destroyContext()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java25 import javax.microedition.khronos.egl.EGLContext;
701 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig); in createContext()
702 void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context); in destroyContext()
708 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) { in createContext()
717 EGLContext context) { in destroyContext()
925 mEgl = (EGL10) EGLContext.getEGL(); in start()
1057 EGLContext currentContext = mEgl.eglGetCurrentContext(); in verifyContext()
1065 EGLContext mEglContext;

1234