/external/tensorflow/tensorflow/lite/delegates/gpu/gl/ |
D | egl_context.h | 41 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,
|
D | egl_context.cc | 40 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/ |
D | egl.h | 64 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/ |
D | egl.h | 64 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/ |
D | mesa_glinterop.h | 69 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/ |
D | functionsegl_typedefs.h | 25 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,
|
D | RendererEGL.h | 25 EGLContext context, 29 EGLContext getContext() const; 35 EGLContext mContext;
|
D | FunctionsEGL.h | 49 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/ |
D | eglcontext.h | 115 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/ |
D | GLTestContext_command_buffer.cpp | 25 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/ |
D | GLTestContext_command_buffer.cpp | 25 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/ |
D | EglBase10.java | 38 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()
|
D | EglBase14.java | 34 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/ |
D | libEGL.hpp | 50 …EGLContext (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/ |
D | EGLSurfacelessContextTest.cpp | 75 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/ |
D | egl.h | 47 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/ |
D | egl_gl.c | 47 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()
|
D | egl_epoxy_api.c | 46 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/ |
D | entry_points_egl.h | 26 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/ |
D | DisplayAndroid.cpp | 215 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()
|
D | DisplayAndroid.h | 54 void destroyNativeContext(EGLContext context) override; 57 EGLContext sharedContext, 63 egl::Error createRenderer(EGLContext shareContext, 76 EGLContext context = EGL_NO_CONTEXT;
|
/external/deqp/framework/egl/ |
D | egluUnique.hpp | 77 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/ |
D | egl.h | 60 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/ |
D | eglwFuncPtrLibraryDecl.inl | 12 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/ |
D | ExplicitContextTest.cpp | 37 EGLContext context = getEGLWindow()->getContext(); in TEST_P() 54 EGLContext context = getEGLWindow()->getContext(); in TEST_P() 71 EGLContext context = getEGLWindow()->getContext(); in TEST_P()
|