| 677 | // connection and disable OpenGL rendering. |
| 678 | |
| 679 | char *XServerVendor(Display *dpy) |
| 680 | { |
| 681 | TRY(); |
| 682 | |
| 683 | if(IS_EXCLUDED(dpy) || !strlen(fconfig.vendor)) |
| 684 | return _XServerVendor(dpy); |
| 685 | return fconfig.vendor; |
| 686 | |
| 687 | CATCH(); |
| 688 | |
| 689 | return NULL; |
| 690 | } |
| 691 | |
| 692 | |
| 693 | // The following functions are interposed so that VirtualGL can detect window |
no outgoing calls
no test coverage detected