Home
last modified time | relevance | path

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

/device/generic/goldfish-opengl/tests/gles_android_wrapper/
Degl_proc.h45 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…
DThreadInfo.h24 EGLWrapperContext(EGLContext p_aglContext, int _version) { in EGLWrapperContext()
34 EGLContext aglContext;
Degl.cpp425 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/generic/goldfish-opengl/system/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,
Deglext.h84 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, E…
87 typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenu…
/device/generic/goldfish-opengl/system/egl/
DeglDisplay.h65 void onCreateContext(EGLContext ctx);
68 void onDestroyContext(EGLContext ctx);
102 typedef std::unordered_set<EGLContext> EGLContextSet;
105 typedef std::hash_set<EGLContext> EGLContextSet;
Degl.cpp219 s_display.onCreateContext((EGLContext)this); in EGLContext_t()
236 s_display.onDestroyContext((EGLContext)this); in ~EGLContext_t()
1283 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLin… in eglCreateContext()
1448 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) in eglDestroyContext()
1472 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) in eglMakeCurrent()
1640 EGLContext eglGetCurrentContext() in eglGetCurrentContext()
1670 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) in eglQueryContext()
1771 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffe… in eglCreateImageKHR()
DeglDisplay.cpp548 void eglDisplay::onCreateContext(EGLContext ctx) { in onCreateContext()
560 void eglDisplay::onDestroyContext(EGLContext ctx) { in onDestroyContext()