Home
last modified time | relevance | path

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

12345678

/external/tensorflow/tensorflow/lite/delegates/gpu/gl/
Degl_context.h41 EglContext(EGLContext context, EGLDisplay display, EGLConfig config, in EglContext()
56 EGLContext context() const { return context_; } in context()
80 EGLContext context_;
89 Status CreateConfiglessContext(EGLDisplay display, EGLContext shared_context,
92 Status CreateSurfacelessContext(EGLDisplay display, EGLContext shared_context,
95 Status CreatePBufferContext(EGLDisplay display, EGLContext shared_context,
Degl_context.cc40 Status CreateContext(EGLDisplay display, EGLContext shared_context, in CreateContext()
48 EGLContext context = in CreateContext()
109 Status CreateConfiglessContext(EGLDisplay display, EGLContext shared_context, in CreateConfiglessContext()
117 Status CreateSurfacelessContext(EGLDisplay display, EGLContext shared_context, in CreateSurfacelessContext()
132 Status CreatePBufferContext(EGLDisplay display, EGLContext shared_context, in CreatePBufferContext()
/external/angle/include/EGL/
Degl.h64 typedef void *EGLContext; typedef
102 #define EGL_NO_CONTEXT EGL_CAST(EGLContext,0)
127 typedef EGLContext (EGLAPIENTRYP PFNEGLCREATECONTEXTPROC) (EGLDisplay dpy, EGLConfig config, EGLCon…
131 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx);
141 …PIENTRYP PFNEGLMAKECURRENTPROC) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
142 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint at…
152 EGLAPI EGLContext EGLAPIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_…
156 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
166 …lean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
167 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EG…
[all …]
/external/mesa3d/include/EGL/
Degl.h64 typedef void *EGLContext; typedef
102 #define EGL_NO_CONTEXT EGL_CAST(EGLContext,0)
127 typedef EGLContext (EGLAPIENTRYP PFNEGLCREATECONTEXTPROC) (EGLDisplay dpy, EGLConfig config, EGLCon…
131 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx);
141 …PIENTRYP PFNEGLMAKECURRENTPROC) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
142 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint at…
152 EGLAPI EGLContext EGLAPIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_…
156 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
166 …lean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
167 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EG…
[all …]
/external/mesa3d/include/GL/
Dmesa_glinterop.h69 typedef void *EGLContext; typedef
262 MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context,
288 MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context,
295 typedef int (PFNMESAGLINTEROPEGLQUERYDEVICEINFOPROC)(EGLDisplay dpy, EGLContext context,
300 typedef int (PFNMESAGLINTEROPEGLEXPORTOBJECTPROC)(EGLDisplay dpy, EGLContext context,
/external/angle/src/libANGLE/renderer/gl/egl/
Dfunctionsegl_typedefs.h25 typedef EGLContext (*PFNEGLCREATECONTEXTPROC)(EGLDisplay dpy,
27 EGLContext share_context,
40 typedef EGLBoolean (*PFNEGLDESTROYCONTEXTPROC)(EGLDisplay dpy, EGLContext ctx);
59 EGLContext ctx);
61 EGLContext ctx,
97 typedef EGLContext (*PFNEGLGETCURRENTCONTEXTPROC)(void);
111 EGLContext ctx,
DRendererEGL.h25 EGLContext context,
29 EGLContext getContext() const;
35 EGLContext mContext;
DFunctionsEGL.h49 EGLContext createContext(EGLConfig config,
50 EGLContext share_context,
56 EGLBoolean destroyContext(EGLContext context) const;
58 EGLBoolean makeCurrent(EGLSurface surface, EGLContext context) const;
68 EGLImageKHR createImageKHR(EGLContext context,
/external/mesa3d/src/egl/main/
Deglcontext.h115 static inline EGLContext
119 return (EGLContext) ctx; in _eglLinkContext()
139 _eglLookupContext(EGLContext context, _EGLDisplay *disp) in _eglLookupContext()
151 static inline EGLContext
156 (EGLContext) ctx : EGL_NO_CONTEXT; in _eglGetContextHandle()
/external/skia/tools/gpu/gl/command_buffer/
DGLTestContext_command_buffer.cpp25 typedef void *EGLContext; typedef
36 #define EGL_NO_CONTEXT ((EGLContext)0)
63 typedef EGLContext (*CreateContextProc)(EGLDisplay dpy, EGLConfig config, EGLContext share_context,…
64 typedef EGLBoolean (*DestroyContextProc)(EGLDisplay dpy, EGLContext ctx);
65 typedef EGLBoolean (*MakeCurrentProc)(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext
167 static EGLContext CurrentContext() { in CurrentContext()
175 EGLContext ctx) { in MakeCurrent()
193 EGLContext fContext = EGL_NO_CONTEXT;
275 EGLContext eglShareContext = shareContext in CommandBufferGLTestContext()
276 ? reinterpret_cast<EGLContext>(shareContext->fContext) : nullptr; in CommandBufferGLTestContext()
/external/skqp/tools/gpu/gl/command_buffer/
DGLTestContext_command_buffer.cpp25 typedef void *EGLContext; typedef
36 #define EGL_NO_CONTEXT ((EGLContext)0)
63 typedef EGLContext (*CreateContextProc)(EGLDisplay dpy, EGLConfig config, EGLContext share_context,…
64 typedef EGLBoolean (*DestroyContextProc)(EGLDisplay dpy, EGLContext ctx);
65 typedef EGLBoolean (*MakeCurrentProc)(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext
167 static EGLContext CurrentContext() { in CurrentContext()
175 EGLContext ctx) { in MakeCurrent()
193 EGLContext fContext = EGL_NO_CONTEXT;
275 EGLContext eglShareContext = shareContext in CommandBufferGLTestContext()
276 ? reinterpret_cast<EGLContext>(shareContext->fContext) : nullptr; in CommandBufferGLTestContext()
/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/swiftshader/src/OpenGL/libEGL/
DlibEGL.hpp50EGLContext (EGLAPIENTRY* eglCreateContext)(EGLDisplay dpy, EGLConfig config, EGLContext share_cont…
51 EGLBoolean (EGLAPIENTRY* eglDestroyContext)(EGLDisplay dpy, EGLContext ctx);
52 …an (EGLAPIENTRY* eglMakeCurrent)(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
53 EGLContext (EGLAPIENTRY* eglGetCurrentContext)(void);
56 …EGLBoolean (EGLAPIENTRY* eglQueryContext)(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint…
61 …EGLImageKHR (EGLAPIENTRY* eglCreateImageKHR)(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLCl…
/external/angle/src/tests/egl_tests/
DEGLSurfacelessContextTest.cpp75 EGLContext createContext() in createContext()
119 EGLContext mContext = EGL_NO_CONTEXT;
128 EGLContext context = createContext(); in TEST_P()
150 EGLContext context = createContext(); in TEST_P()
178 EGLContext context = createContext(); in TEST_P()
198 EGLContext context = createContext(); in TEST_P()
222 EGLContext context = createContext(); in TEST_P()
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/EGL/
Degl.h47 typedef void *EGLContext; typedef
69 #define EGL_NO_CONTEXT ((EGLContext)0)
298 EGLAPI EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, EGLConfig config,
299 EGLContext share_context,
301 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx);
303 EGLSurface read, EGLContext ctx);
305 EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext(void);
308 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext(EGLDisplay dpy, EGLContext ctx,
/external/libepoxy/test/
Degl_gl.c47 make_egl_current_and_test(EGLDisplay *dpy, EGLContext ctx) in make_egl_current_and_test()
76 init_egl(EGLDisplay **out_dpy, EGLContext *out_ctx) in init_egl()
91 EGLContext ctx; in init_egl()
117 EGLContext egl_ctx; in main()
Degl_epoxy_api.c46 make_egl_current_and_test(EGLDisplay *dpy, EGLContext ctx) in make_egl_current_and_test()
84 init_egl(EGLDisplay *dpy, EGLContext *out_ctx) in init_egl()
98 EGLContext ctx; in init_egl()
123 EGLContext egl_ctx; in main()
/external/angle/src/libGLESv2/
Dentry_points_egl.h26 ANGLE_EXPORT EGLContext EGLAPIENTRY EGL_CreateContext(EGLDisplay dpy,
28 EGLContext share_context,
41 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_DestroyContext(EGLDisplay dpy, EGLContext ctx);
61 EGLContext ctx);
63 EGLContext ctx,
101 ANGLE_EXPORT EGLContext EGLAPIENTRY EGL_GetCurrentContext(void);
117 EGLContext ctx,
/external/angle/src/libANGLE/renderer/gl/egl/android/
DDisplayAndroid.cpp215 EGLContext nativeShareContext = EGL_NO_CONTEXT; in createContext()
285 EGLContext newContext = EGL_NO_CONTEXT; in makeCurrent()
331 void DisplayAndroid::destroyNativeContext(EGLContext context) in destroyNativeContext()
356 egl::Error DisplayAndroid::createRenderer(EGLContext shareContext, in createRenderer()
360 EGLContext context = EGL_NO_CONTEXT; in createRenderer()
398 WorkerContextAndroid(EGLContext context, FunctionsEGL *functions, EGLSurface pbuffer);
405 EGLContext mContext;
410 WorkerContextAndroid::WorkerContextAndroid(EGLContext context, in WorkerContextAndroid()
437 EGLContext sharedContext, in createWorkerContext()
440 EGLContext context = mEGL->createContext(mConfig, sharedContext, workerAttribs.data()); in createWorkerContext()
DDisplayAndroid.h54 void destroyNativeContext(EGLContext context) override;
57 EGLContext sharedContext,
63 egl::Error createRenderer(EGLContext shareContext,
76 EGLContext context = EGL_NO_CONTEXT;
/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);
/external/swiftshader/include/EGL/
Degl.h60 typedef void *EGLContext; typedef
98 #define EGL_NO_CONTEXT EGL_CAST(EGLContext,0)
123 EGLAPI EGLContext EGLAPIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_…
127 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
137 …lean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
138 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EG…
235 EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext (void);
291 EGLAPI EGLImage EGLAPIENTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClie…
/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…
/external/angle/src/tests/gl_tests/
DExplicitContextTest.cpp37 EGLContext context = getEGLWindow()->getContext(); in TEST_P()
54 EGLContext context = getEGLWindow()->getContext(); in TEST_P()
71 EGLContext context = getEGLWindow()->getContext(); in TEST_P()

12345678