/device/generic/goldfish-opengl/tests/gles_android_wrapper/ |
D | 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, cons…
|
D | ThreadInfo.h | 24 EGLWrapperContext(EGLContext p_aglContext, int _version) { in EGLWrapperContext() 34 EGLContext aglContext;
|
D | egl.cpp | 425 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLin… in eglCreateContext() 428 EGLContext share = share_context; in eglCreateContext() 455 EGLContext ctx = getDispatch()->eglCreateContext(dpy, config, share, attrib); in eglCreateContext() 467 return (EGLContext)wctx; in eglCreateContext() 470 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) in eglDestroyContext() 491 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) in eglMakeCurrent() 494 EGLContext aglContext = (ctx == EGL_NO_CONTEXT ? EGL_NO_CONTEXT : wctx->aglContext); in eglMakeCurrent() 518 EGLContext eglGetCurrentContext() in eglGetCurrentContext() 534 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) in eglQueryContext() 587 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffe… in eglCreateImageKHR() [all …]
|
/device/google/cuttlefish_common/guest/libs/eglwrapper/ |
D | egl_wrapper_proc.h | 14 typedef EGLContext (egl_APIENTRY *eglCreateContext_wrapper_proc_t) (EGLDisplay, EGLConfig, EGLConte… 18 typedef EGLBoolean (egl_APIENTRY *eglDestroyContext_wrapper_proc_t) (EGLDisplay, EGLContext); 28 …ean (egl_APIENTRY *eglMakeCurrent_wrapper_proc_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext); 29 typedef EGLBoolean (egl_APIENTRY *eglQueryContext_wrapper_proc_t) (EGLDisplay, EGLContext, EGLint, … 45 typedef EGLContext (egl_APIENTRY *eglGetCurrentContext_wrapper_proc_t) (); 50 typedef EGLImageKHR (egl_APIENTRY *eglCreateImageKHR_wrapper_proc_t) (EGLDisplay, EGLContext, EGLen…
|
D | egl_wrapper_entry.cpp | 10 …EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLi… 14 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext context); 24 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext context); 25 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext context, EGLint attribute, EGLint* value); 41 EGLContext eglGetCurrentContext(); 46 …EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext context, EGLenum target, EGLClientBuffer … 68 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLin… in eglCreateContext() 92 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext context) in eglDestroyContext() 152 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext context) in eglMakeCurrent() 158 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext context, EGLint attribute, EGLint* value) in eglQueryContext() [all …]
|
D | egl.in | 5 GL_ENTRY(EGLContext, eglCreateContext, EGLDisplay dpy, EGLConfig config, EGLContext share_context, … 9 GL_ENTRY(EGLBoolean, eglDestroyContext, EGLDisplay dpy, EGLContext context) 19 GL_ENTRY(EGLBoolean, eglMakeCurrent, EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext c… 20 GL_ENTRY(EGLBoolean, eglQueryContext, EGLDisplay dpy, EGLContext context, EGLint attribute, EGLint … 36 GL_ENTRY(EGLContext, eglGetCurrentContext, void) 44 GL_ENTRY(EGLImageKHR, eglCreateImageKHR, EGLDisplay dpy, EGLContext context, EGLenum target, EGLCli…
|
D | egl.types | 13 EGLContext 32 0x%08x
|
/device/generic/goldfish-opengl/system/egl/ |
D | eglDisplay.h | 66 void onCreateContext(EGLContext ctx); 69 void onDestroyContext(EGLContext ctx); 72 bool isContext(EGLContext ctx); 106 typedef std::unordered_set<EGLContext> EGLContextSet; 109 typedef std::hash_set<EGLContext> EGLContextSet;
|
D | eglDisplay.cpp | 618 void eglDisplay::onCreateContext(EGLContext ctx) { in onCreateContext() 630 void eglDisplay::onDestroyContext(EGLContext ctx) { in onDestroyContext() 642 bool eglDisplay::isContext(EGLContext ctx) { in isContext()
|
D | egl.cpp | 243 s_display.onCreateContext((EGLContext)this); in EGLContext_t() 260 s_display.onDestroyContext((EGLContext)this); in ~EGLContext_t() 1475 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLin… in eglCreateContext() 1634 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) in eglDestroyContext() 1656 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) in eglMakeCurrent() 1846 EGLContext eglGetCurrentContext() in eglGetCurrentContext() 1876 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) in eglQueryContext() 1977 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffe… in eglCreateImageKHR()
|
/device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/ |
D | egl.entries | 10 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLin… 14 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx); 24 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); 25 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); 44 EGLContext eglGetCurrentContext(void);
|
D | egl_extensions.entries | 10 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffe…
|
/device/generic/goldfish-opengl/system/include/EGL/ |
D | egl.h | 47 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,
|
D | eglext.h | 84 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, E… 87 typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenu…
|
/device/generic/opengl-transport/host/libs/virglrenderer/ |
D | EglContext.h | 35 EglContext(EGLContext context_, uint32_t ctx_, GLESApi api_) in EglContext() 65 EGLContext context;
|
D | AVDVirglRenderer.cpp | 118 static EGLContext g_ctx0_es1; 119 static EGLContext g_ctx0_es2; 655 EGLContext old_context; in virgl_renderer_fill_caps()
|
D | RenderControl.cpp | 395 EGLContext share_context = EGL_NO_CONTEXT; in rcCreateContext() 407 EGLContext context_ = in rcCreateContext()
|
/device/generic/goldfish/camera/ |
D | EmulatedFakeRotatingCameraDevice.h | 99 EGLContext mEglContext;
|