Lines Matching defs:display

39  * Byte swapping:  If the Mesa host and the X display use a different
42 * display, not the Mesa host.
44 * according to the display's visual red_mask, green_mask, and blue_mask.
131 xmesa_init_display( Display *display )
139 /* Look for XMesaDisplay which corresponds to 'display' */
141 if (Displays[i].display == display) {
154 if (!xmdpy->display && display) {
155 xmdpy->display = display;
156 xmdpy->screen = driver.create_pipe_screen(display);
176 xmdpy->display = NULL;
179 if (!xmdpy->display || xmdpy->display != display)
209 * Input: dpy - the X display
216 Display *dpy = xmv->display;
244 * Input: dpy - the display
323 ImageByteOrder(v->display));
441 XMesaDisplay xmdpy = xmesa_init_display(vis->display);
462 get_drawable_size(vis->display, d, &width, &height);
483 * Find an XMesaBuffer by matching X display and colormap but NOT matching
491 if (b->xm_visual->display == dpy &&
643 * Input: display - X11 display
665 XMesaVisual XMesaCreateVisual( Display *display,
682 XMesaDisplay xmdpy = xmesa_init_display(display);
695 XSynchronize( display, 1 );
703 v->display = display;
843 * Do per-display initializations.
846 xmesa_init( Display *display )
848 xmesa_init_display(display);
855 * \param share_list another XMesaContext with which to share display
864 XMesaDisplay xmdpy = xmesa_init_display(v->display);
963 XGetWindowAttributes( v->display, w, &attr );
979 cmap = XCreateColormap(v->display, w, attr.visual, AllocNone);
1045 xmesa_get_window_size(v->display, b, &b->width, &b->height);
1096 root = RootWindow( v->display, v->visinfo->screen );
1097 drawable = XCreatePixmap(v->display, root, width, height,
1151 xmesa_get_window_size(b->xm_visual->display, b, &b->width, &b->height);
1222 * Swap front and back color buffers and have winsys display front buffer.
1253 if (c && c->xm_visual->display) {
1254 XMesaDisplay xmdpy = xmesa_init_display(c->xm_visual->display);
1263 XFlush( c->xm_visual->display );
1275 if (b->ws.drawable == d && b->xm_visual->display == dpy) {
1284 * Free/destroy all XMesaBuffers associated with given display.
1291 if (b->xm_visual->display == dpy) {
1312 b->xm_visual->display &&
1315 XSync(b->xm_visual->display, False);
1316 if (!window_exists( b->xm_visual->display, b->ws.drawable )) {