Home
last modified time | relevance | path

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

1234567891011

/external/mesa3d/src/mesa/drivers/x11/
Dglxapi.c86 get_dispatch(Display *dpy) in get_dispatch() argument
88 if (!dpy) in get_dispatch()
95 if (d->Dpy == dpy) { in get_dispatch()
96 prevDisplay = dpy; in get_dispatch()
112 d->Dpy = dpy; in get_dispatch()
118 prevDisplay = dpy; in get_dispatch()
151 glXChooseVisual(Display *dpy, int screen, int *list) in glXChooseVisual() argument
154 GET_DISPATCH(dpy, t); in glXChooseVisual()
157 return t->ChooseVisual(dpy, screen, list); in glXChooseVisual()
162 glXCopyContext(Display *dpy, GLXContext src, GLXContext dst, unsigned long mask) in glXCopyContext() argument
[all …]
Dglxapi.h63 XVisualInfo *(*ChooseVisual)(Display *dpy, int screen, int *list);
64 void (*CopyContext)(Display *dpy, GLXContext src, GLXContext dst, unsigned long mask);
65 …GLXContext (*CreateContext)(Display *dpy, XVisualInfo *visinfo, GLXContext shareList, Bool direct);
66 GLXPixmap (*CreateGLXPixmap)(Display *dpy, XVisualInfo *visinfo, Pixmap pixmap);
67 void (*DestroyContext)(Display *dpy, GLXContext ctx);
68 void (*DestroyGLXPixmap)(Display *dpy, GLXPixmap pixmap);
69 int (*GetConfig)(Display *dpy, XVisualInfo *visinfo, int attrib, int *value);
72 Bool (*IsDirect)(Display *dpy, GLXContext ctx);
73 Bool (*MakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
74 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/angle/src/libEGL/
DlibEGL_autogen.cpp65 EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, in eglChooseConfig() argument
72 return EGL_ChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig()
75 EGLBoolean EGLAPIENTRY eglCopyBuffers(EGLDisplay dpy, in eglCopyBuffers() argument
80 return EGL_CopyBuffers(dpy, surface, target); in eglCopyBuffers()
83 EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, in eglCreateContext() argument
89 return EGL_CreateContext(dpy, config, share_context, attrib_list); in eglCreateContext()
92 EGLSurface EGLAPIENTRY eglCreatePbufferSurface(EGLDisplay dpy, in eglCreatePbufferSurface() argument
97 return EGL_CreatePbufferSurface(dpy, config, attrib_list); in eglCreatePbufferSurface()
100 EGLSurface EGLAPIENTRY eglCreatePixmapSurface(EGLDisplay dpy, in eglCreatePixmapSurface() argument
106 return EGL_CreatePixmapSurface(dpy, config, pixmap, attrib_list); in eglCreatePixmapSurface()
[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.c60 warn_GLX_1_3(Display * dpy, const char *function_name) in warn_GLX_1_3() argument
62 struct glx_display *priv = __glXInitialize(dpy); in warn_GLX_1_3()
84 ChangeDrawableAttribute(Display * dpy, GLXDrawable drawable, in ChangeDrawableAttribute() argument
87 struct glx_display *priv = __glXInitialize(dpy); in ChangeDrawableAttribute()
95 if ((priv == NULL) || (dpy == NULL) || (drawable == 0)) { in ChangeDrawableAttribute()
99 opcode = __glXSetupForCommand(dpy); in ChangeDrawableAttribute()
103 LockDisplay(dpy); in ChangeDrawableAttribute()
133 UnlockDisplay(dpy); in ChangeDrawableAttribute()
137 pdraw = GetGLXDRIDrawable(dpy, drawable); in ChangeDrawableAttribute()
193 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()
103 pdraw = dri2GetGlxDrawableFromXDrawableId(dpy, awire->drawable); in DRI2WireToEvent()
108 aevent->type = dri2GetSwapEventType(dpy, awire->drawable); in DRI2WireToEvent()
112 aevent->serial = _XSetLastRequestRead(dpy, (xGenericReply *) wire); in DRI2WireToEvent()
114 aevent->display = dpy; in DRI2WireToEvent()
133 glxDraw = GetGLXDrawable(dpy, pdraw->drawable); in DRI2WireToEvent()
[all …]
Dg_glxglvnddispatchfuncs.c108 static void dispatch_BindTexImageEXT(Display *dpy, GLXDrawable drawable, in dispatch_BindTexImageEXT() argument
114 dd = GetDispatchFromDrawable(dpy, drawable); in dispatch_BindTexImageEXT()
122 pBindTexImageEXT(dpy, drawable, buffer, attrib_list); in dispatch_BindTexImageEXT()
127 static GLXFBConfigSGIX *dispatch_ChooseFBConfigSGIX(Display *dpy, int screen, in dispatch_ChooseFBConfigSGIX() argument
135 dd = __VND->getDynDispatch(dpy, screen); in dispatch_ChooseFBConfigSGIX()
143 ret = pChooseFBConfigSGIX(dpy, screen, attrib_list, nelements); in dispatch_ChooseFBConfigSGIX()
144 if (AddFBConfigsMapping(dpy, ret, nelements, dd)) { in dispatch_ChooseFBConfigSGIX()
154 static GLXContext dispatch_CreateContextAttribsARB(Display *dpy, in dispatch_CreateContextAttribsARB() argument
164 dd = GetDispatchFromFBConfig(dpy, config); in dispatch_CreateContextAttribsARB()
172 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 glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, in glXGetSyncValuesOML() argument
59 (void) dpy; in glXGetSyncValuesOML()
68 glXSwapBuffersMscOML(Display * dpy, GLXDrawable drawable, in glXSwapBuffersMscOML() argument
71 (void) dpy; in glXSwapBuffersMscOML()
81 glXWaitForMscOML(Display * dpy, GLXDrawable drawable, in glXWaitForMscOML() argument
86 (void) dpy; in glXWaitForMscOML()
99 glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, in glXWaitForSbcOML() argument
103 (void) dpy; in glXWaitForSbcOML()
114 glXReleaseBuffersMESA(Display * dpy, GLXDrawable d) in glXReleaseBuffersMESA() argument
116 (void) dpy; in glXReleaseBuffersMESA()
[all …]
/external/angle/src/third_party/libXNVCtrl/
DNVCtrl.c54 #define XNVCTRLCheckExtension(dpy,i,val) \ argument
55 XextCheckExtension (dpy, i, nvctrl_extension_name, val)
56 #define XNVCTRLSimpleCheckExtension(dpy,i) \ argument
57 XextSimpleCheckExtension (dpy, i, nvctrl_extension_name)
60 static uintptr_t version_flags(Display *dpy, XExtDisplayInfo *info);
90 static void XNVCTRLCheckTargetData(Display *dpy, XExtDisplayInfo *info, in XEXT_GENERATE_CLOSE_DISPLAY()
93 uintptr_t flags = version_flags(dpy, info); in XEXT_GENERATE_CLOSE_DISPLAY()
106 Display *dpy, in XNVCTRLQueryExtension() argument
110 XExtDisplayInfo *info = find_display (dpy); in XNVCTRLQueryExtension()
126 static uintptr_t version_flags(Display *dpy, XExtDisplayInfo *info) in version_flags() argument
[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 …]
/external/swiftshader/include/GL/
Dglxext.h110 typedef GLXFBConfig *( *PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
111 typedef GLXFBConfig *( *PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list…
112 typedef int ( *PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *…
113 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config);
114 typedef GLXWindow ( *PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const i…
115 typedef void ( *PFNGLXDESTROYWINDOWPROC) (Display *dpy, GLXWindow win);
116 typedef GLXPixmap ( *PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, cons…
117 typedef void ( *PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
118 typedef GLXPbuffer ( *PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib…
119 typedef void ( *PFNGLXDESTROYPBUFFERPROC) (Display *dpy, GLXPbuffer pbuf);
[all …]
/external/mesa3d/include/GL/
Dglxext.h110 typedef GLXFBConfig *( *PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
111 typedef GLXFBConfig *( *PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list…
112 typedef int ( *PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *…
113 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config);
114 typedef GLXWindow ( *PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const i…
115 typedef void ( *PFNGLXDESTROYWINDOWPROC) (Display *dpy, GLXWindow win);
116 typedef GLXPixmap ( *PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, cons…
117 typedef void ( *PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap);
118 typedef GLXPbuffer ( *PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib…
119 typedef void ( *PFNGLXDESTROYPBUFFERPROC) (Display *dpy, GLXPbuffer pbuf);
[all …]
Dglx.h182 extern XVisualInfo* glXChooseVisual( Display *dpy, int screen,
185 extern GLXContext glXCreateContext( Display *dpy, XVisualInfo *vis,
188 extern void glXDestroyContext( Display *dpy, GLXContext ctx );
190 extern Bool glXMakeCurrent( Display *dpy, GLXDrawable drawable,
193 extern void glXCopyContext( Display *dpy, GLXContext src, GLXContext dst,
196 extern void glXSwapBuffers( Display *dpy, GLXDrawable drawable );
198 extern GLXPixmap glXCreateGLXPixmap( Display *dpy, XVisualInfo *visual,
201 extern void glXDestroyGLXPixmap( Display *dpy, GLXPixmap pixmap );
203 extern Bool glXQueryExtension( Display *dpy, int *errorb, int *event );
205 extern Bool glXQueryVersion( Display *dpy, int *maj, int *min );
[all …]
/external/igt-gpu-tools/tests/
Dkms_busy.c33 set_fb_on_crtc(igt_display_t *dpy, int pipe, struct igt_fb *fb) in set_fb_on_crtc() argument
39 output = igt_get_single_output_for_pipe(dpy, pipe); in set_fb_on_crtc()
44 igt_create_pattern_fb(dpy->drm_fd, mode->hdisplay, mode->vdisplay, in set_fb_on_crtc()
54 static void do_cleanup_display(igt_display_t *dpy) in do_cleanup_display() argument
60 for_each_pipe(dpy, pipe) in do_cleanup_display()
61 for_each_plane_on_pipe(dpy, pipe, plane) in do_cleanup_display()
64 for_each_connected_output(dpy, output) in do_cleanup_display()
67 igt_display_commit2(dpy, dpy->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); in do_cleanup_display()
70 static void flip_to_fb(igt_display_t *dpy, int pipe, in flip_to_fb() argument
75 struct pollfd pfd = { .fd = dpy->drm_fd, .events = POLLIN }; in flip_to_fb()
[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/swiftshader/src/OpenGL/libEGL/
Dmain.cpp349 EGLBoolean EGLAPIENTRY Initialize(EGLDisplay dpy, EGLint *major, EGLint *minor);
350 EGLBoolean EGLAPIENTRY Terminate(EGLDisplay dpy);
351 const char *EGLAPIENTRY QueryString(EGLDisplay dpy, EGLint name);
352 EGLBoolean EGLAPIENTRY GetConfigs(EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *n…
353 EGLBoolean EGLAPIENTRY ChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, …
354 EGLBoolean EGLAPIENTRY GetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *…
355 EGLSurface EGLAPIENTRY CreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType wi…
356 EGLSurface EGLAPIENTRY CreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_…
357 EGLSurface EGLAPIENTRY CreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pi…
358 EGLBoolean EGLAPIENTRY DestroySurface(EGLDisplay dpy, EGLSurface surface);
[all …]
/external/angle/src/libANGLE/renderer/gl/egl/
Dfunctionsegl_typedefs.h17 typedef EGLBoolean (*PFNEGLCHOOSECONFIGPROC)(EGLDisplay dpy,
22 typedef EGLBoolean (*PFNEGLCOPYBUFFERSPROC)(EGLDisplay dpy,
25 typedef EGLContext (*PFNEGLCREATECONTEXTPROC)(EGLDisplay dpy,
29 typedef EGLSurface (*PFNEGLCREATEPBUFFERSURFACEPROC)(EGLDisplay dpy,
32 typedef EGLSurface (*PFNEGLCREATEPIXMAPSURFACEPROC)(EGLDisplay dpy,
36 typedef EGLSurface (*PFNEGLCREATEWINDOWSURFACEPROC)(EGLDisplay dpy,
40 typedef EGLBoolean (*PFNEGLDESTROYCONTEXTPROC)(EGLDisplay dpy, EGLContext ctx);
41 typedef EGLBoolean (*PFNEGLDESTROYSURFACEPROC)(EGLDisplay dpy, EGLSurface surface);
42 typedef EGLBoolean (*PFNEGLGETCONFIGATTRIBPROC)(EGLDisplay dpy,
46 typedef EGLBoolean (*PFNEGLGETCONFIGSPROC)(EGLDisplay dpy,
[all …]
/external/mesa3d/src/gallium/frontends/glx/xlib/
Dglx_api.c181 save_glx_visual( Display *dpy, XVisualInfo *vinfo, in save_glx_visual() argument
235 if (v->display == dpy in save_glx_visual()
259 xmvis = XMesaCreateVisual( dpy, vinfo, rgbFlag, alphaFlag, dbFlag, in save_glx_visual()
331 create_glx_visual( Display *dpy, XVisualInfo *visinfo ) in create_glx_visual() argument
341 return save_glx_visual( dpy, visinfo, in create_glx_visual()
369 find_glx_visual( Display *dpy, XVisualInfo *vinfo ) in find_glx_visual() argument
375 if (VisualTable[i]->display==dpy in find_glx_visual()
383 if (VisualTable[i]->display==dpy && VisualTable[i]->vishandle==vinfo) { in find_glx_visual()
396 get_visual( Display *dpy, int scr, unsigned int depth, int xclass ) in get_visual() argument
409 default_depth = DefaultDepth(dpy,scr); in get_visual()
[all …]
/external/angle/src/libGLESv2/
Dentry_points_egl_ext_autogen.h21 ANGLE_EXPORT void EGLAPIENTRY EGL_SetBlobCacheFuncsANDROID(EGLDisplay dpy,
30 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_GetCompositorTimingSupportedANDROID(EGLDisplay dpy,
33 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_GetCompositorTimingANDROID(EGLDisplay dpy,
38 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_GetNextFrameIdANDROID(EGLDisplay dpy,
41 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_GetFrameTimestampSupportedANDROID(EGLDisplay dpy,
44 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_GetFrameTimestampsANDROID(EGLDisplay dpy,
56 ANGLE_EXPORT EGLint EGLAPIENTRY EGL_DupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync);
59 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_PresentationTimeANDROID(EGLDisplay dpy,
70 ANGLE_EXPORT const char *EGLAPIENTRY EGL_QueryStringiANGLE(EGLDisplay dpy,
73 ANGLE_EXPORT EGLBoolean EGLAPIENTRY EGL_QueryDisplayAttribANGLE(EGLDisplay dpy,
[all …]
/external/igt-gpu-tools/overlay/x11/
Ddri2.c67 DRI2Connect(Display *dpy, XID window, char **driverName, char **deviceName) in DRI2Connect() argument
69 XExtDisplayInfo *info = DRI2FindDisplay(dpy); in DRI2Connect()
73 XextCheckExtension(dpy, info, dri2ExtensionName, False); in DRI2Connect()
75 LockDisplay(dpy); in DRI2Connect()
81 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) { in DRI2Connect()
82 UnlockDisplay(dpy); in DRI2Connect()
88 UnlockDisplay(dpy); in DRI2Connect()
95 _XEatData(dpy, in DRI2Connect()
98 UnlockDisplay(dpy); in DRI2Connect()
102 _XReadPad(dpy, *driverName, rep.driverNameLength); in DRI2Connect()
[all …]
/external/angle/include/EGL/
Deglext.h44 typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EG…
46 EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR …
120 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBKHRPROC) (EGLDisplay dpy, EGLint name, EGL…
122 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribKHR (EGLDisplay dpy, EGLint name, EGLAttrib *val…
133 typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLi…
134 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync);
135 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint …
136 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLi…
138 EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_…
139 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync);
[all …]

1234567891011