Home | History | Annotate | Download | only in x11

Lines Matching refs:vis

524    XVisualInfo temp, *vis;
544 vis = XGetVisualInfo( dpy, mask, &temp, &n );
550 if (vis && depth > 24 && (xclass==TrueColor || xclass==DirectColor)) {
551 if (_mesa_bitcount((GLuint) vis->red_mask ) <= 8 &&
552 vis->green_mask) <= 8 &&
553 _mesa_bitcount((GLuint) vis->blue_mask ) <= 8) {
554 return vis;
557 XFree((void *) vis);
562 return vis;
580 XVisualInfo *vis;
597 vis = get_visual( dpy, scr, depth, xclass );
598 if (vis) {
599 return vis;
621 XVisualInfo *vis;
626 vis = get_env_visual( dpy, screen, "MESA_RGB_VISUAL" );
627 if (vis) {
628 return vis;
642 vis = get_visual( dpy, screen, depth, visclass );
643 if (vis) {
644 return vis;
651 vis = get_visual( dpy, screen, depth, visclass );
652 if (vis) {
653 return vis;
673 vis = get_visual( dpy, screen, depth, visclass );
674 if (vis) {
675 return vis;
682 vis = get_visual( dpy, screen, depth, visclass );
683 if (vis) {
684 return vis;
894 XVisualInfo *vis;
1185 vis = XGetVisualInfo(dpy, VisualIDMask | VisualScreenMask, &temp, &n);
1186 if (vis) {
1189 if (vis->depth <= 8)
1205 vis = choose_x_visual(dpy, screen, min_rgb, visual_type);
1208 vis = choose_x_overlay_visual(dpy, screen, level,
1213 if (vis) {
1242 xmvis = save_glx_visual( dpy, vis, alpha_flag, double_flag,
2573 Fake_glXGetFBConfigFromVisualSGIX(Display *dpy, XVisualInfo *vis)
2575 XMesaVisual xmvis = find_glx_visual(dpy, vis);
2578 xmvis = create_glx_visual(dpy, vis);