Searched defs:display (Results 26 - 50 of 425) sorted by last modified time

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A Dxf86vmode.h149 Display *display; /* Display the event was read from */ member in struct:__anon29537
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc129 SDL_Overlay *BE_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) { argument
185 overlay->hwdata->display = display;
H A DSDL_sysyuv.h57 SDL_Surface *display; member in struct:private_yuvhwdata
65 extern SDL_Overlay* BE_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display);
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
H A DSDL_dgavideo.c70 const char *display = NULL; local
74 /* The driver is available is available if the display is local
78 if ( (SDL_strncmp(XDisplayName(display), ":", 1) == 0) ||
79 (SDL_strncmp(XDisplayName(display), "unix:", 5) == 0) ) {
80 dpy = XOpenDisplay(display);
332 const char *display; local
339 /* Open the X11 display */
340 display = NULL; /* Get it from DISPLAY environment variable */
342 DGA_Display = XOpenDisplay(display);
344 SDL_SetError("Couldn't open X11 display");
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c151 SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) argument
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv.c71 SDL_Overlay* ph_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display) argument
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv.c75 SDL_Overlay *GS_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) argument
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c59 SDL_Surface *display; member in struct:private_yuvhwdata
82 SDL_Overlay *PS3_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) { argument
84 if ((display->format->BytesPerPixel != 2) &&
85 (display->format->BytesPerPixel != 3) &&
86 (display->format->BytesPerPixel != 4))
133 hwdata->display = display;
225 SDL_Surface *display; local
228 display = hwdata->display;
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzVideo.h35 - Multiple monitor support (currently only main display)
91 CGDirectDisplayID display; /* 0 == main display (only support single display) */ member in struct:SDL_PrivateVideoData
92 const void *mode; /* current mode of the display */
93 const void *save_mode; /* original mode of the display */
95 CGDirectPaletteRef palette; /* palette of an 8-bit display */
99 Uint32 width, height, bpp; /* frequently used data about the display */
131 #define display_id (this->hidden->display)
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv.c122 SDL_Overlay *DX5_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) argument
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11events.c58 SDLKey X11_TranslateKeycode(Display *display, KeyCode kc);
308 static int X11_KeyRepeat(Display *display, XEvent *event) argument
314 if ( XPending(display) ) {
315 XPeekEvent(display, &peekevent);
320 XNextEvent(display, &peekevent);
906 int X11_Pending(Display *display) argument
908 /* Flush the display connection and look to see if events are queued */
909 XFlush(display);
910 if ( XEventsQueued(display, QueuedAlready) ) {
920 x11_fd = ConnectionNumber(display);
1119 X11_TranslateKeycode(Display *display, KeyCode kc) argument
1201 get_modifier_masks(Display *display) argument
1310 X11_SetKeyboardState(Display *display, const char *key_vec) argument
[all...]
H A DSDL_x11video.c78 Display *display = NULL; local
80 display = XOpenDisplay(NULL);
81 if ( display != NULL ) {
82 XCloseDisplay(display);
86 return(display != NULL);
249 /* We will crash if we try to clean up our display */
264 printf(" Extension \"%s\" %s on display \"%s\".\n",
456 SDL_SetError("display has changed while an IM is kept");
587 char *display; local
590 /* Open the X11 display */
[all...]
H A DSDL_x11wm.c536 Display* display = SDL_Display; local
537 int screen = XDefaultScreen(display);
540 int width = XDisplayWidth(display, screen);
541 int width_mm = XDisplayWidthMM(display, screen);
542 int height = XDisplayHeight(display, screen);
543 int height_mm = XDisplayHeightMM(display, screen);
565 Display* display = SDL_Display; local
566 int screen = XDefaultScreen(display);
570 rect->w = XDisplayWidth(display, screen);
571 rect->h = XDisplayHeight(display, scree
[all...]
H A DSDL_x11yuv.c160 SDL_Overlay *X11_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) argument
/external/qemu/ui/
H A Dvnc-android.c2 * QEMU VNC display driver
189 if (vnc_display == NULL || vnc_display->display == NULL) {
2148 if (vs->display) {
2149 g_free(vs->display);
2150 vs->display = NULL;
2187 int vnc_display_open(DisplayState *ds, const char *display) argument
2205 if (strcmp(display, "none") == 0)
2208 if (!(vs->display = strdup(display)))
2211 options = display;
[all...]
H A Dvnc.c2 * QEMU VNC display driver
181 if (vnc_display == NULL || vnc_display->display == NULL) {
2143 if (vs->display) {
2144 g_free(vs->display);
2145 vs->display = NULL;
2182 int vnc_display_open(DisplayState *ds, const char *display) argument
2201 if (strcmp(display, "none") == 0)
2204 if (!(vs->display = strdup(display)))
2207 options = display;
[all...]
H A Dvnc.h2 * QEMU VNC display driver
95 char *display; member in struct:VncDisplay
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
H A Djdepend-2.9.jarMETA-INF/ META-INF/MANIFEST.MF jdepend/ jdepend/framework/ jdepend/framework/AbstractParser.class AbstractParser. ...
/external/pdfium/fpdfsdk/src/javascript/
H A DField.cpp47 JS_STATIC_PROP_ENTRY(display)
1330 FX_BOOL Field::display(OBJ_PROP_PARAMS) function in class:Field
/external/mksh/src/
H A Dedit.c2809 * the display width; take care of pwidth though
3370 static void display(char *, char *, int);
5075 display(wbuf[1 - win], wbuf[win], leftside);
5128 display(char *wb1, char *wb2, int leftside) function
/external/mesa3d/include/GL/
H A Dglx.h495 Display *display; /* display the event was read from */ member in struct:__anon27043
508 Display *display; /* Display the event was read from */ member in struct:__anon27044
H A Dglxext.h469 Display *display; /* display the event was read from */ member in struct:__anon27045
651 extern GLXVideoSourceSGIX glXCreateGLXVideoSourceSGIX (Display *display, int screen, VLServer server, VLPath path, int nodeClass, VLNode drainNode);
654 typedef GLXVideoSourceSGIX ( * PFNGLXCREATEGLXVIDEOSOURCESGIXPROC) (Display *display, int screen, VLServer server, VLPath path, int nodeClass, VLNode drainNode);
724 extern int glXBindChannelToWindowSGIX (Display *display, int screen, int channel, Window window);
725 extern int glXChannelRectSGIX (Display *display, int screen, int channel, int x, int y, int w, int h);
726 extern int glXQueryChannelRectSGIX (Display *display, int screen, int channel, int *dx, int *dy, int *dw, int *dh);
727 extern int glXQueryChannelDeltasSGIX (Display *display, int screen, int channel, int *x, int *y, int *w, int *h);
728 extern int glXChannelRectSyncSGIX (Display *display, int screen, int channel, GLenum synctype);
730 typedef int ( * PFNGLXBINDCHANNELTOWINDOWSGIXPROC) (Display *display, in
[all...]
H A Dvms_x_fix.h1100 #define sys$display SYS$DISPLAY

Completed in 4259 milliseconds

1234567891011>>