Home
last modified time | relevance | path

Searched refs:dpy (Results 1 – 25 of 177) sorted by relevance

12345678

/external/mesa3d/src/mesa/drivers/x11/
Dglxapi.c91 get_dispatch(Display *dpy) in get_dispatch() argument
93 if (!dpy) in get_dispatch()
100 if (d->Dpy == dpy) { in get_dispatch()
101 prevDisplay = dpy; in get_dispatch()
117 d->Dpy = dpy; in get_dispatch()
123 prevDisplay = dpy; in get_dispatch()
156 glXChooseVisual(Display *dpy, int screen, int *list) in glXChooseVisual() argument
159 GET_DISPATCH(dpy, t); in glXChooseVisual()
162 return t->ChooseVisual(dpy, screen, list); in glXChooseVisual()
167 glXCopyContext(Display *dpy, GLXContext src, GLXContext dst, unsigned long mask) in glXCopyContext() argument
[all …]
Dglxapi.h64 XVisualInfo *(*ChooseVisual)(Display *dpy, int screen, int *list);
65 void (*CopyContext)(Display *dpy, GLXContext src, GLXContext dst, unsigned long mask);
66 …GLXContext (*CreateContext)(Display *dpy, XVisualInfo *visinfo, GLXContext shareList, Bool direct);
67 GLXPixmap (*CreateGLXPixmap)(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap);
68 void (*DestroyContext)(Display *dpy, GLXContext ctx);
69 void (*DestroyGLXPixmap)(Display *dpy, GLXPixmap pixmap);
70 int (*GetConfig)(Display *dpy, XVisualInfo *visinfo, int attrib, int *value);
73 Bool (*IsDirect)(Display *dpy, GLXContext ctx);
74 Bool (*MakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
75 Bool (*QueryExtension)(Display *dpy, int *errorb, int *event);
[all …]
Dfakeglx.c160 GetOverlayInfo(Display *dpy, int screen, int *numOverlays) in GetOverlayInfo() argument
173 overlayVisualsAtom = XInternAtom(dpy,"SERVER_OVERLAY_VISUALS", True); in GetOverlayInfo()
178 status = XGetWindowProperty(dpy, RootWindow(dpy, screen), in GetOverlayInfo()
208 level_of_visual( Display *dpy, XVisualInfo *vinfo ) in level_of_visual() argument
213 overlay_info = GetOverlayInfo(dpy, vinfo->screen, &numOverlaysPerScreen); in level_of_visual()
248 save_glx_visual( Display *dpy, XVisualInfo *vinfo, in save_glx_visual() argument
289 if (v->display == dpy in save_glx_visual()
311 xmvis = XMesaCreateVisual( dpy, vinfo, GL_TRUE, alphaFlag, dbFlag, in save_glx_visual()
379 create_glx_visual( Display *dpy, XVisualInfo *visinfo ) in create_glx_visual() argument
386 vislevel = level_of_visual( dpy, visinfo ); in create_glx_visual()
[all …]
/external/libdrm/tests/ttmtest/src/
Dxf86dri.c54 #define uniDRICheckExtension(dpy,i,val) \ argument
55 XextCheckExtension (dpy, i, xf86dri_extension_name, val)
63 static int close_display(Display * dpy, XExtCodes * extCodes);
95 Bool uniDRIQueryExtension(dpy, event_basep, error_basep)
96 Display *dpy;
99 XExtDisplayInfo *info = find_display(dpy);
114 uniDRIQueryVersion(dpy, majorVersion, minorVersion, patchVersion) in uniDRIQueryVersion() argument
115 Display *dpy; in uniDRIQueryVersion()
120 XExtDisplayInfo *info = find_display(dpy);
125 uniDRICheckExtension(dpy, info, False);
[all …]
/external/mesa3d/src/glx/
DXF86dri.c52 #define XF86DRICheckExtension(dpy,i,val) \ argument
53 XextCheckExtension (dpy, i, xf86dri_extension_name, val)
61 static int close_display(Display * dpy, XExtCodes * extCodes);
98 XF86DRIQueryExtension(Display * dpy, int *event_basep,
101 XExtDisplayInfo *info = find_display(dpy);
117 XF86DRIQueryVersion(Display * dpy, int *majorVersion, int *minorVersion, in XF86DRIQueryVersion() argument
120 XExtDisplayInfo *info = find_display(dpy); in XF86DRIQueryVersion()
125 XF86DRICheckExtension(dpy, info, False); in XF86DRIQueryVersion()
127 LockDisplay(dpy); in XF86DRIQueryVersion()
131 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) { in XF86DRIQueryVersion()
[all …]
Dglx_pbuffer.c59 warn_GLX_1_3(Display * dpy, const char *function_name) in warn_GLX_1_3() argument
61 struct glx_display *priv = __glXInitialize(dpy); in warn_GLX_1_3()
83 ChangeDrawableAttribute(Display * dpy, GLXDrawable drawable, in ChangeDrawableAttribute() argument
86 struct glx_display *priv = __glXInitialize(dpy); in ChangeDrawableAttribute()
94 if ((priv == NULL) || (dpy == NULL) || (drawable == 0)) { in ChangeDrawableAttribute()
98 opcode = __glXSetupForCommand(dpy); in ChangeDrawableAttribute()
102 LockDisplay(dpy); in ChangeDrawableAttribute()
132 UnlockDisplay(dpy); in ChangeDrawableAttribute()
136 pdraw = GetGLXDRIDrawable(dpy, drawable); in ChangeDrawableAttribute()
192 CreateDRIDrawable(Display *dpy, struct glx_config *config, in CreateDRIDrawable() argument
[all …]
Ddri2.c61 DRI2WireToEvent(Display *dpy, XEvent *event, xEvent *wire);
63 DRI2EventToWire(Display *dpy, XEvent *event, xEvent *wire);
88 DRI2WireToEvent(Display *dpy, XEvent *event, xEvent *wire) in DRI2WireToEvent() argument
90 XExtDisplayInfo *info = DRI2FindDisplay(dpy); in DRI2WireToEvent()
93 XextCheckExtension(dpy, info, dri2ExtensionName, False); in DRI2WireToEvent()
104 pdraw = dri2GetGlxDrawableFromXDrawableId(dpy, awire->drawable); in DRI2WireToEvent()
109 aevent->type = dri2GetSwapEventType(dpy, awire->drawable); in DRI2WireToEvent()
113 aevent->serial = _XSetLastRequestRead(dpy, (xGenericReply *) wire); in DRI2WireToEvent()
115 aevent->display = dpy; in DRI2WireToEvent()
134 glxDraw = GetGLXDrawable(dpy, pdraw->drawable); in DRI2WireToEvent()
[all …]
Dg_glxglvnddispatchfuncs.c109 static void dispatch_BindTexImageEXT(Display *dpy, GLXDrawable drawable, in dispatch_BindTexImageEXT() argument
115 dd = GetDispatchFromDrawable(dpy, drawable); in dispatch_BindTexImageEXT()
123 (*pBindTexImageEXT)(dpy, drawable, buffer, attrib_list); in dispatch_BindTexImageEXT()
128 static GLXFBConfigSGIX *dispatch_ChooseFBConfigSGIX(Display *dpy, int screen, in dispatch_ChooseFBConfigSGIX() argument
136 dd = __VND->getDynDispatch(dpy, screen); in dispatch_ChooseFBConfigSGIX()
144 ret = (*pChooseFBConfigSGIX)(dpy, screen, attrib_list, nelements); in dispatch_ChooseFBConfigSGIX()
145 if (AddFBConfigsMapping(dpy, ret, nelements, dd)) { in dispatch_ChooseFBConfigSGIX()
155 static GLXContext dispatch_CreateContextAttribsARB(Display *dpy, in dispatch_CreateContextAttribsARB() argument
165 dd = GetDispatchFromFBConfig(dpy, config); in dispatch_CreateContextAttribsARB()
173 ret = (*pCreateContextAttribsARB)(dpy, config, share_list, direct, attrib_list); in dispatch_CreateContextAttribsARB()
[all …]
/external/mesa3d/src/glx/apple/
Dappledri.c51 #define AppleDRICheckExtension(dpy,i,val) \ argument
52 XextCheckExtension (dpy, i, appledri_extension_name, val)
60 static int close_display(Display * dpy, XExtCodes * extCodes);
61 static Bool wire_to_event(Display * dpy, XEvent * re, xEvent * event);
95 wire_to_event(Display *dpy, XEvent *re, xEvent *event) in wire_to_event() argument
97 XExtDisplayInfo *info = find_display(dpy); in wire_to_event()
100 AppleDRICheckExtension(dpy, info, False); in wire_to_event()
106 (*surface_notify_handler) (dpy, (unsigned int) sevent->arg, in wire_to_event()
129 XAppleDRIQueryExtension(dpy, event_basep, error_basep) in XAppleDRIQueryExtension() argument
130 Display *dpy; in XAppleDRIQueryExtension()
[all …]
Dglx_empty.c56 glXJoinSwapGroupSGIX(Display * dpy, GLXDrawable drawable, GLXDrawable member) in glXJoinSwapGroupSGIX() argument
58 (void) dpy; in glXJoinSwapGroupSGIX()
68 glXBindSwapBarrierSGIX(Display * dpy, GLXDrawable drawable, int barrier) in glXBindSwapBarrierSGIX() argument
70 (void) dpy; in glXBindSwapBarrierSGIX()
76 glXQueryMaxSwapBarriersSGIX(Display * dpy, int screen, int *max) in glXQueryMaxSwapBarriersSGIX() argument
78 (void) dpy; in glXQueryMaxSwapBarriersSGIX()
89 glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, in glXGetSyncValuesOML() argument
92 (void) dpy; in glXGetSyncValuesOML()
101 glXSwapBuffersMscOML(Display * dpy, GLXDrawable drawable, in glXSwapBuffersMscOML() argument
104 (void) dpy; in glXSwapBuffersMscOML()
[all …]
/external/swiftshader/include/GL/
Dglxext.h112 typedef GLXFBConfig *( *PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
113 typedef GLXFBConfig *( *PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list…
114 typedef int ( *PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *…
115 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config);
116 typedef GLXWindow ( *PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const i…
117 typedef void ( *PFNGLXDESTROYWINDOWPROC) (Display *dpy, GLXWindow win);
118 typedef GLXPixmap ( *PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, cons…
119 typedef void ( *PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
120 typedef GLXPbuffer ( *PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib…
121 typedef void ( *PFNGLXDESTROYPBUFFERPROC) (Display *dpy, GLXPbuffer pbuf);
[all …]
/external/deqp/framework/egl/wrapper/
DeglwFuncPtrLibraryImpl.inl12 EGLBoolean FuncPtrLibrary::bindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) const argument
14 return m_egl.bindTexImage(dpy, surface, buffer);
17 EGLBoolean FuncPtrLibrary::chooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *conf… argument
19 return m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_config);
22 EGLint FuncPtrLibrary::clientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout)… argument
24 return m_egl.clientWaitSync(dpy, sync, flags, timeout);
27 EGLint FuncPtrLibrary::clientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR… argument
29 return m_egl.clientWaitSyncKHR(dpy, sync, flags, timeout);
32 EGLBoolean FuncPtrLibrary::copyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType tar… argument
34 return m_egl.copyBuffers(dpy, surface, target);
[all …]
DeglwFuncPtrLibraryDecl.inl7 EGLBoolean bindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) const;
8 EGLBoolean chooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs,…
9 EGLint clientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout) co…
10 EGLint clientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR tim…
11 EGLBoolean copyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target…
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…
15 EGLSurface createPbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer …
16 EGLSurface createPbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_l…
[all …]
DeglwLibrary.inl7 virtual EGLBoolean bindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) con…
8 virtual EGLBoolean chooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *…
9 virtual EGLint clientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime tim…
10 virtual EGLint clientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTim…
11 virtual EGLBoolean copyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapTyp…
12 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…
15 virtual EGLSurface createPbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClien…
16 virtual EGLSurface createPbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *…
[all …]
DeglwApi.inl68 EGLBoolean eglwBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer);
69 EGLBoolean eglwChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *conf…
70 EGLint eglwClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout…
71 EGLint eglwClientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR…
72 EGLBoolean eglwCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType ta…
73 EGLContext eglwCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_contex…
74 EGLImage eglwCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuf…
75 EGLImageKHR eglwCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClie…
76 EGLSurface eglwCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuf…
77 EGLSurface eglwCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attr…
[all …]
DeglwImpl.inl15 EGLBoolean eglwBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) argument
20 return egl->bindTexImage(dpy, surface, buffer);
23 EGLBoolean eglwChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint … argument
28 return egl->chooseConfig(dpy, attrib_list, configs, config_size, num_config);
31 EGLint eglwClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout) argument
36 return egl->clientWaitSync(dpy, sync, flags, timeout);
39 EGLBoolean eglwCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target) argument
44 return egl->copyBuffers(dpy, surface, (void*)target);
47 EGLContext eglwCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGL… argument
52 return egl->createContext(dpy, config, share_context, attrib_list);
[all …]
/external/mesa3d/include/GL/
Dglxext.h112 typedef GLXFBConfig *( *PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
113 typedef GLXFBConfig *( *PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list…
114 typedef int ( *PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *…
115 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config);
116 typedef GLXWindow ( *PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const i…
117 typedef void ( *PFNGLXDESTROYWINDOWPROC) (Display *dpy, GLXWindow win);
118 typedef GLXPixmap ( *PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, cons…
119 typedef void ( *PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
120 typedef GLXPbuffer ( *PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib…
121 typedef void ( *PFNGLXDESTROYPBUFFERPROC) (Display *dpy, GLXPbuffer pbuf);
[all …]
Dglx.h187 extern XVisualInfo* glXChooseVisual( Display *dpy, int screen,
190 extern GLXContext glXCreateContext( Display *dpy, XVisualInfo *vis,
193 extern void glXDestroyContext( Display *dpy, GLXContext ctx );
195 extern Bool glXMakeCurrent( Display *dpy, GLXDrawable drawable,
198 extern void glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
201 extern void glXSwapBuffers( Display *dpy, GLXDrawable drawable );
203 extern GLXPixmap glXCreateGLXPixmap( Display *dpy, XVisualInfo *visual,
206 extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
208 extern Bool glXQueryExtension( Display *dpy, int *errorb, int *event );
210 extern Bool glXQueryVersion( Display *dpy, int *maj, int *min );
[all …]
/external/mesa3d/src/glx/windows/
Dxwindowsdri.c37 #define WindowsDRICheckExtension(dpy,i,val) \ argument
38 XextCheckExtension (dpy, i, windowsdri_extension_name, val)
46 static int close_display(Display * dpy, XExtCodes * extCodes);
85 XWindowsDRIQueryExtension(dpy, event_basep, error_basep)
86 Display *dpy;
89 XExtDisplayInfo *info = find_display(dpy);
105 XWindowsDRIQueryVersion(dpy, majorVersion, minorVersion, patchVersion) in XWindowsDRIQueryVersion() argument
106 Display *dpy; in XWindowsDRIQueryVersion()
111 XExtDisplayInfo *info = find_display(dpy);
116 WindowsDRICheckExtension(dpy, info, False);
[all …]
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dglx_api.c178 save_glx_visual( Display *dpy, XVisualInfo *vinfo, in save_glx_visual() argument
229 if (v->display == dpy in save_glx_visual()
253 xmvis = XMesaCreateVisual( dpy, vinfo, rgbFlag, alphaFlag, dbFlag, in save_glx_visual()
325 create_glx_visual( Display *dpy, XVisualInfo *visinfo ) in create_glx_visual() argument
335 return save_glx_visual( dpy, visinfo, in create_glx_visual()
362 find_glx_visual( Display *dpy, XVisualInfo *vinfo ) in find_glx_visual() argument
368 if (VisualTable[i]->display==dpy in find_glx_visual()
376 if (VisualTable[i]->display==dpy && VisualTable[i]->vishandle==vinfo) { in find_glx_visual()
389 get_visual( Display *dpy, int scr, unsigned int depth, int xclass ) in get_visual() argument
402 default_depth = DefaultDepth(dpy,scr); in get_visual()
[all …]
/external/swiftshader/src/OpenGL/libEGL/
Dmain.cpp319 EGLBoolean Initialize(EGLDisplay dpy, EGLint *major, EGLint *minor);
320 EGLBoolean Terminate(EGLDisplay dpy);
321 const char *QueryString(EGLDisplay dpy, EGLint name);
322 EGLBoolean GetConfigs(EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config);
323 EGLBoolean ChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint confi…
324 EGLBoolean GetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value);
325 EGLSurface CreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType window, const …
326 EGLSurface CreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list);
327 EGLSurface CreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const …
328 EGLBoolean DestroySurface(EGLDisplay dpy, EGLSurface surface);
[all …]
DlibEGL.hpp30 EGLBoolean (*eglInitialize)(EGLDisplay dpy, EGLint *major, EGLint *minor);
31 EGLBoolean (*eglTerminate)(EGLDisplay dpy);
32 const char *(*eglQueryString)(EGLDisplay dpy, EGLint name);
33 …EGLBoolean (*eglGetConfigs)(EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_co…
34 …EGLBoolean (*eglChooseConfig)(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLin…
35 …EGLBoolean (*eglGetConfigAttrib)(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value…
36 …EGLSurface (*eglCreateWindowSurface)(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType window,…
37 EGLSurface (*eglCreatePbufferSurface)(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list);
38 …EGLSurface (*eglCreatePixmapSurface)(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap,…
39 EGLBoolean (*eglDestroySurface)(EGLDisplay dpy, EGLSurface surface);
[all …]
/external/mesa3d/include/EGL/
Deglext.h63 typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EG…
65 EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR …
136 typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLi…
137 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync);
138 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint …
139 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLi…
141 EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_…
142 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync);
143 EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLT…
144 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribut…
[all …]
/external/swiftshader/include/EGL/
Deglext.h63 typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EG…
65 EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR …
139 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBKHRPROC) (EGLDisplay dpy, EGLint name, EGL…
141 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribKHR (EGLDisplay dpy, EGLint name, EGLAttrib *val…
152 typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLi…
153 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync);
154 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint …
155 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLi…
157 EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_…
158 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync);
[all …]
/external/mesa3d/src/egl/main/
Deglapi.h55 EGLBoolean (*Initialize)(_EGLDriver *, _EGLDisplay *dpy);
56 EGLBoolean (*Terminate)(_EGLDriver *, _EGLDisplay *dpy);
59 EGLBoolean (*GetConfigs)(_EGLDriver *drv, _EGLDisplay *dpy,
62 EGLBoolean (*ChooseConfig)(_EGLDriver *drv, _EGLDisplay *dpy,
65 EGLBoolean (*GetConfigAttrib)(_EGLDriver *drv, _EGLDisplay *dpy,
70 _EGLContext *(*CreateContext)(_EGLDriver *drv, _EGLDisplay *dpy,
73 EGLBoolean (*DestroyContext)(_EGLDriver *drv, _EGLDisplay *dpy,
78 EGLBoolean (*MakeCurrent)(_EGLDriver *drv, _EGLDisplay *dpy,
81 EGLBoolean (*QueryContext)(_EGLDriver *drv, _EGLDisplay *dpy,
86 _EGLSurface *(*CreateWindowSurface)(_EGLDriver *drv, _EGLDisplay *dpy,
[all …]

12345678