Home
last modified time | relevance | path

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

/AliOS-Things-master/components/SDL2/src/video/khronos/EGL/
A Deglext.h153 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync);
158 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync);
209 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image);
212 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image);
252 EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay dpy, EGLSurface surface);
324 EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode);
353 EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamKHR (EGLDisplay dpy, const EGLint *attrib_list);
354 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyStreamKHR (EGLDisplay dpy, EGLStreamKHR stream);
461 EGLAPI EGLint EGLAPIENTRY eglWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags);
511 EGLAPI EGLint EGLAPIENTRY eglDupNativeFenceFDANDROID (EGLDisplay dpy, EGLSyncKHR sync);
[all …]
A Degl.h127 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
128 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface);
136 EGLAPI EGLBoolean EGLAPIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor);
139 EGLAPI const char *EGLAPIENTRY eglQueryString (EGLDisplay dpy, EGLint name);
141 EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers (EGLDisplay dpy, EGLSurface surface);
142 EGLAPI EGLBoolean EGLAPIENTRY eglTerminate (EGLDisplay dpy);
163 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer);
166 EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval (EGLDisplay dpy, EGLint interval);
288 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySync (EGLDisplay dpy, EGLSync sync);
292 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImage (EGLDisplay dpy, EGLImage image);
[all …]
/AliOS-Things-master/components/SDL2/include/
A DSDL_egl.h608 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
609 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface);
620 EGLAPI const char *EGLAPIENTRY eglQueryString (EGLDisplay dpy, EGLint name);
622 EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers (EGLDisplay dpy, EGLSurface surface);
623 EGLAPI EGLBoolean EGLAPIENTRY eglTerminate (EGLDisplay dpy);
647 EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval (EGLDisplay dpy, EGLint interval);
769 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySync (EGLDisplay dpy, EGLSync sync);
773 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImage (EGLDisplay dpy, EGLImage image);
777 EGLAPI EGLBoolean EGLAPIENTRY eglWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags);
902 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync);
[all …]
/AliOS-Things-master/components/SDL2/test/
A Dtestnativex11.c26 static Display *dpy; variable
33 dpy = XOpenDisplay(NULL); in CreateWindowX11()
34 if (dpy) { in CreateWindowX11()
36 XCreateSimpleWindow(dpy, DefaultRootWindow(dpy), 0, 0, w, h, 0, 0, in CreateWindowX11()
38 XMapRaised(dpy, window); in CreateWindowX11()
39 XSync(dpy, False); in CreateWindowX11()
47 if (dpy) { in DestroyWindowX11()
48 XDestroyWindow(dpy, (Window) window); in DestroyWindowX11()
49 XCloseDisplay(dpy); in DestroyWindowX11()
A Dtestdisplayinfo.c35 int num_displays, dpy; in main() local
51 for (dpy = 0; dpy < num_displays; dpy++) { in main()
52 const int num_modes = SDL_GetNumDisplayModes(dpy); in main()
57 SDL_GetDisplayBounds(dpy, &rect); in main()
58 …SDL_Log("%d: \"%s\" (%dx%d, (%d, %d)), %d modes.\n", dpy, SDL_GetDisplayName(dpy), rect.w, rect.h,… in main()
60 if (SDL_GetDisplayDPI(dpy, &ddpi, &hdpi, &vdpi) == -1) { in main()
66 if (SDL_GetCurrentDisplayMode(dpy, &mode) == -1) { in main()
72 if (SDL_GetDesktopDisplayMode(dpy, &mode) == -1) { in main()
79 if (SDL_GetDisplayMode(dpy, m, &mode) == -1) { in main()
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_egl_c.h51 EGLBoolean(EGLAPIENTRY *eglInitialize) (EGLDisplay dpy, EGLint * major,
53 EGLBoolean(EGLAPIENTRY *eglTerminate) (EGLDisplay dpy);
57 EGLBoolean(EGLAPIENTRY *eglChooseConfig) (EGLDisplay dpy,
62 EGLContext(EGLAPIENTRY *eglCreateContext) (EGLDisplay dpy,
67 EGLBoolean(EGLAPIENTRY *eglDestroyContext) (EGLDisplay dpy, EGLContext ctx);
72 EGLSurface(EGLAPIENTRY *eglCreateWindowSurface) (EGLDisplay dpy,
78 EGLBoolean(EGLAPIENTRY *eglMakeCurrent) (EGLDisplay dpy, EGLSurface draw,
81 EGLBoolean(EGLAPIENTRY *eglSwapBuffers) (EGLDisplay dpy, EGLSurface draw);
83 EGLBoolean(EGLAPIENTRY *eglSwapInterval) (EGLDisplay dpy, EGLint interval);
85 const char *(EGLAPIENTRY *eglQueryString) (EGLDisplay dpy, EGLint name);
[all …]
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11sym.h226 SDL_X11_SYM(int,_XData32,(Display *dpy,register _Xconst long *data,unsigned len),(dpy,data,len),ret…
227 SDL_X11_SYM(void,_XRead32,(Display *dpy,register long *data,long len),(dpy,data,len),)
235 SDL_X11_SYM(void,_SmtBufferOverflow,(Display *dpy,register smtDisplayPtr p),(dpy,p),)
236 SDL_X11_SYM(void,_SmtIpError,(Display *dpy,register smtDisplayPtr p,int i),(dpy,p,i),)
254 SDL_X11_SYM(Status,XdbeDeallocateBackBufferName,(Display *dpy,XdbeBackBuffer buffer),(dpy,buffer),r…
256 SDL_X11_SYM(Status,XdbeBeginIdiom,(Display *dpy),(dpy),return)
257 SDL_X11_SYM(Status,XdbeEndIdiom,(Display *dpy),(dpy),return)
286 SDL_X11_SYM(XRRScreenConfiguration *,XRRGetScreenInfo,(Display *dpy,Drawable draw),(dpy,draw),retur…
295 SDL_X11_SYM(XRRScreenResources *,XRRGetScreenResources,(Display *dpy, Window window),(dpy, window),…
306 SDL_X11_SYM(RROutput,XRRGetOutputPrimary,(Display *dpy,Window window),(dpy,window),return)
[all …]
A DSDL_x11modes.c353 Display *dpy = data->display; in X11_InitModes_XRandR() local
354 const int screencount = ScreenCount(dpy); in X11_InitModes_XRandR()
355 const int default_screen = DefaultScreen(dpy); in X11_InitModes_XRandR()
356 RROutput primary = X11_XRRGetOutputPrimary(dpy, RootWindow(dpy, default_screen)); in X11_InitModes_XRandR()
357 Atom EDID = X11_XInternAtom(dpy, "EDID", False); in X11_InitModes_XRandR()
375 if (get_visualinfo(dpy, screen, &vinfo) < 0) { in X11_InitModes_XRandR()
385 pixmapformats = X11_XListPixmapFormats(dpy, &n); in X11_InitModes_XRandR()
396 res = X11_XRRGetScreenResourcesCurrent(dpy, RootWindow(dpy, screen)); in X11_InitModes_XRandR()
402 res = X11_XRRGetScreenResources(dpy, RootWindow(dpy, screen)); in X11_InitModes_XRandR()
439 crtc = X11_XRRGetCrtcInfo(dpy, res, output_crtc); in X11_InitModes_XRandR()
[all …]
A DSDL_x11clipboard.c50 Display *dpy = data->display; in GetWindow() local
51 Window parent = RootWindow(dpy, DefaultScreen(dpy)); in GetWindow()
53 data->clipboard_window = X11_XCreateWindow(dpy, parent, -10, -10, 1, 1, 0, in GetWindow()
A DSDL_x11vulkan.h31 typedef xcb_connection_t *(*PFN_XGetXCBConnection)(Display *dpy);
A DSDL_x11framebuffer.c43 static SDL_bool have_mitshm(Display *dpy) in have_mitshm() argument
46 return X11_XShmQueryExtension(dpy) ? SDL_X11_HAVE_SHM : SDL_FALSE; in have_mitshm()
A DSDL_x11messagebox.c506 const SDL_VideoDisplay *dpy = &dev->displays[0]; in X11_MessageBoxCreateWindow() local
507 const SDL_DisplayData *dpydata = (SDL_DisplayData *) dpy->driverdata; in X11_MessageBoxCreateWindow()
508 x = dpydata->x + (( dpy->current_mode.w - data->dialog_width ) / 2); in X11_MessageBoxCreateWindow()
509 y = dpydata->y + (( dpy->current_mode.h - data->dialog_height ) / 3); in X11_MessageBoxCreateWindow()
A DSDL_x11vulkan.c228 createInfo.dpy = videoData->display; in X11_Vulkan_CreateSurface()
A DSDL_x11opengl.c83 typedef GLXContext(*PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display * dpy,
A DSDL_x11window.c47 static Bool isMapNotify(Display *dpy, XEvent *ev, XPointer win) in isMapNotify() argument
51 static Bool isUnmapNotify(Display *dpy, XEvent *ev, XPointer win) in isUnmapNotify() argument
/AliOS-Things-master/components/SDL2/src/video/khronos/vulkan/
A Dvulkan_xlib_xrandr.h34 …TR *PFN_vkAcquireXlibDisplayEXT)(VkPhysicalDevice physicalDevice, Display* dpy, VkDisplayKHR displ…
35 …*PFN_vkGetRandROutputDisplayEXT)(VkPhysicalDevice physicalDevice, Display* dpy, RROutput rrOutput,…
40 Display* dpy,
45 Display* dpy,
A Dvulkan_xlib.h40 Display* dpy; member
46 …tKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, Display* dpy, VisualID visualID);
58 Display* dpy,
A Dvk_icd.h133 Display *dpy; member
A Dvulkan.hpp1106 …VkResult vkAcquireXlibDisplayEXT( VkPhysicalDevice physicalDevice, Display* dpy, VkDisplayKHR disp… in vkAcquireXlibDisplayEXT() argument
1108 return ::vkAcquireXlibDisplayEXT( physicalDevice, dpy, display); in vkAcquireXlibDisplayEXT()
2294 …return ::vkGetPhysicalDeviceXlibPresentationSupportKHR( physicalDevice, queueFamilyIndex, dpy, vis… in vkGetPhysicalDeviceXlibPresentationSupportKHR()
2312 return ::vkGetRandROutputDisplayEXT( physicalDevice, dpy, rrOutput, pDisplay); in vkGetRandROutputDisplayEXT()
12205 , dpy( dpy_ ) in XlibSurfaceCreateInfoKHR()
12234 dpy = dpy_; in setDpy()
12259 && ( dpy == rhs.dpy ) in operator ==()
12274 Display* dpy; member
45486 …Result acquireXlibDisplayEXT( Display* dpy, DisplayKHR display, Dispatch const &d = Dispatch() ) c…
46237 …return d.vkGetPhysicalDeviceXlibPresentationSupportKHR( m_physicalDevice, queueFamilyIndex, dpy, v… in getXlibPresentationSupportKHR()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/
A Dminisblack-1c-8b.pgm111 …���������������g !+:@CNXagmdWS\cn{��~xvrzyxuraREBABDGHQY][dpy������������N@S^t~…

Completed in 189 milliseconds