1*706d0b42SXin Li /* 2*706d0b42SXin Li * Copyright © 2013 Intel Corporation 3*706d0b42SXin Li * 4*706d0b42SXin Li * Permission is hereby granted, free of charge, to any person obtaining a 5*706d0b42SXin Li * copy of this software and associated documentation files (the "Software"), 6*706d0b42SXin Li * to deal in the Software without restriction, including without limitation 7*706d0b42SXin Li * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8*706d0b42SXin Li * and/or sell copies of the Software, and to permit persons to whom the 9*706d0b42SXin Li * Software is furnished to do so, subject to the following conditions: 10*706d0b42SXin Li * 11*706d0b42SXin Li * The above copyright notice and this permission notice (including the next 12*706d0b42SXin Li * paragraph) shall be included in all copies or substantial portions of the 13*706d0b42SXin Li * Software. 14*706d0b42SXin Li * 15*706d0b42SXin Li * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16*706d0b42SXin Li * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17*706d0b42SXin Li * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18*706d0b42SXin Li * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19*706d0b42SXin Li * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20*706d0b42SXin Li * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21*706d0b42SXin Li * IN THE SOFTWARE. 22*706d0b42SXin Li */ 23*706d0b42SXin Li 24*706d0b42SXin Li #include "epoxy/glx.h" 25*706d0b42SXin Li 26*706d0b42SXin Li Display * 27*706d0b42SXin Li get_display_or_skip(void); 28*706d0b42SXin Li 29*706d0b42SXin Li void 30*706d0b42SXin Li make_glx_context_current_or_skip(Display *dpy); 31*706d0b42SXin Li 32*706d0b42SXin Li GLXFBConfig 33*706d0b42SXin Li get_fbconfig_for_visinfo(Display *dpy, XVisualInfo *visinfo); 34*706d0b42SXin Li 35*706d0b42SXin Li XVisualInfo * 36*706d0b42SXin Li get_glx_visual(Display *dpy); 37*706d0b42SXin Li 38*706d0b42SXin Li Window 39*706d0b42SXin Li get_glx_window(Display *dpy, XVisualInfo *visinfo, bool map); 40