2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #include <X11/Xutil.h>
28 #include <X11/keysym.h>
29 #include <X11/cursorfont.h>
31 #include <X11/extensions/XShm.h>
32 #if !defined(__APPLE__) && !defined(__MACH__) && !defined(SUNOS)
33 #include <X11/extensions/xf86dga.h>
35 #include <X11/extensions/xf86vmode.h>
39 // Tell startup code that we have a client
40 int cl_available = true;
42 // note: if we used the XRandR extension we could support refresh rates
43 qboolean vid_supportrefreshrate = false;
46 XVisualInfo *(GLAPIENTRY *qglXChooseVisual)(Display *dpy, int screen, int *attribList);
47 GLXContext (GLAPIENTRY *qglXCreateContext)(Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct);
48 void (GLAPIENTRY *qglXDestroyContext)(Display *dpy, GLXContext ctx);
49 Bool (GLAPIENTRY *qglXMakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
50 void (GLAPIENTRY *qglXSwapBuffers)(Display *dpy, GLXDrawable drawable);
51 const char *(GLAPIENTRY *qglXQueryExtensionsString)(Display *dpy, int screen);
53 //GLX_ARB_get_proc_address
54 void *(GLAPIENTRY *qglXGetProcAddressARB)(const GLubyte *procName);
56 static dllfunction_t getprocaddressfuncs[] =
58 {"glXGetProcAddressARB", (void **) &qglXGetProcAddressARB},
62 //GLX_SGI_swap_control
63 GLint (GLAPIENTRY *qglXSwapIntervalSGI)(GLint interval);
65 static dllfunction_t swapcontrolfuncs[] =
67 {"glXSwapIntervalSGI", (void **) &qglXSwapIntervalSGI},
71 static Display *vidx11_display = NULL;
72 static int vidx11_screen;
74 static GLXContext ctx = NULL;
76 Atom wm_delete_window_atom;
78 #define KEY_MASK (KeyPressMask | KeyReleaseMask)
79 #define MOUSE_MASK (ButtonPressMask | ButtonReleaseMask | \
80 PointerMotionMask | ButtonMotionMask)
81 #define X_MASK (KEY_MASK | MOUSE_MASK | VisibilityChangeMask | \
82 StructureNotifyMask | FocusChangeMask | EnterWindowMask | \
86 static qboolean mouse_avail = true;
87 static qboolean vid_usingmouse = false;
88 static qboolean vid_usingvsync = false;
89 static qboolean vid_usevsync = false;
90 static qboolean vid_x11_hardwaregammasupported = false;
91 static int vid_x11_gammarampsize = 0;
92 static float mouse_x, mouse_y;
93 static int p_mouse_x, p_mouse_y;
95 #if !defined(__APPLE__) && !defined(SUNOS)
96 // FIXME: vid_dga_mouseaccel is poorly named, it is actually the multiplier for mouse movement, not an acceleration (which would be a power function or something)
97 cvar_t vid_dga = {CVAR_SAVE, "vid_dga", "1", "make use of DGA mouse input"};
98 cvar_t vid_dga_mouseaccel = {0, "vid_dga_mouseaccel", "1", "speed of mouse when using DGA mouse input"};
101 qboolean vidmode_ext = false;
103 static int win_x, win_y;
105 static XF86VidModeModeInfo init_vidmode;
106 static qboolean vid_isfullscreen = false;
108 static Visual *vidx11_visual;
109 static Colormap vidx11_colormap;
111 /*-----------------------------------------------------------------------*/
113 static int XLateKey(XKeyEvent *ev, char *ascii)
117 KeySym keysym, shifted;
119 keysym = XLookupKeysym (ev, 0);
120 XLookupString(ev, buf, sizeof buf, &shifted, 0);
125 case XK_KP_Page_Up: key = K_KP_PGUP; break;
126 case XK_Page_Up: key = K_PGUP; break;
128 case XK_KP_Page_Down: key = K_KP_PGDN; break;
129 case XK_Page_Down: key = K_PGDN; break;
131 case XK_KP_Home: key = K_KP_HOME; break;
132 case XK_Home: key = K_HOME; break;
134 case XK_KP_End: key = K_KP_END; break;
135 case XK_End: key = K_END; break;
137 case XK_KP_Left: key = K_KP_LEFTARROW; break;
138 case XK_Left: key = K_LEFTARROW; break;
140 case XK_KP_Right: key = K_KP_RIGHTARROW; break;
141 case XK_Right: key = K_RIGHTARROW; break;
143 case XK_KP_Down: key = K_KP_DOWNARROW; break;
144 case XK_Down: key = K_DOWNARROW; break;
146 case XK_KP_Up: key = K_KP_UPARROW; break;
147 case XK_Up: key = K_UPARROW; break;
149 case XK_Escape: key = K_ESCAPE; break;
151 case XK_KP_Enter: key = K_KP_ENTER; break;
152 case XK_Return: key = K_ENTER; break;
154 case XK_Tab: key = K_TAB; break;
156 case XK_F1: key = K_F1; break;
158 case XK_F2: key = K_F2; break;
160 case XK_F3: key = K_F3; break;
162 case XK_F4: key = K_F4; break;
164 case XK_F5: key = K_F5; break;
166 case XK_F6: key = K_F6; break;
168 case XK_F7: key = K_F7; break;
170 case XK_F8: key = K_F8; break;
172 case XK_F9: key = K_F9; break;
174 case XK_F10: key = K_F10; break;
176 case XK_F11: key = K_F11; break;
178 case XK_F12: key = K_F12; break;
180 case XK_BackSpace: key = K_BACKSPACE; break;
182 case XK_KP_Delete: key = K_KP_DEL; break;
183 case XK_Delete: key = K_DEL; break;
185 case XK_Pause: key = K_PAUSE; break;
188 case XK_Shift_R: key = K_SHIFT; break;
192 case XK_Control_R: key = K_CTRL; break;
196 case XK_ISO_Level3_Shift:
198 case XK_Meta_R: key = K_ALT; break;
200 case XK_KP_Begin: key = K_KP_5; break;
202 case XK_Insert:key = K_INS; break;
203 case XK_KP_Insert: key = K_KP_INS; break;
205 case XK_KP_Multiply: key = K_KP_MULTIPLY; break;
206 case XK_KP_Add: key = K_KP_PLUS; break;
207 case XK_KP_Subtract: key = K_KP_MINUS; break;
208 case XK_KP_Divide: key = K_KP_SLASH; break;
210 case XK_section: key = '~'; break;
216 if (keysym >= 'A' && keysym <= 'Z')
217 key = keysym - 'A' + 'a';
227 static Cursor CreateNullCursor(Display *display, Window root)
235 cursormask = XCreatePixmap(display, root, 1, 1, 1);
236 xgc.function = GXclear;
237 gc = XCreateGC(display, cursormask, GCFunction, &xgc);
238 XFillRectangle(display, cursormask, gc, 0, 0, 1, 1);
239 dummycolour.pixel = 0;
241 dummycolour.flags = 04;
242 cursor = XCreatePixmapCursor(display, cursormask, cursormask, &dummycolour,&dummycolour, 0,0);
243 XFreePixmap(display,cursormask);
248 static void IN_Activate (qboolean grab)
254 if (!vid_usingmouse && mouse_avail && win)
256 XWindowAttributes attribs_1;
257 XSetWindowAttributes attribs_2;
259 XGetWindowAttributes(vidx11_display, win, &attribs_1);
260 attribs_2.event_mask = attribs_1.your_event_mask | KEY_MASK | MOUSE_MASK;
261 XChangeWindowAttributes(vidx11_display, win, CWEventMask, &attribs_2);
264 XDefineCursor(vidx11_display, win, CreateNullCursor(vidx11_display, win));
266 XGrabPointer(vidx11_display, win, True, 0, GrabModeAsync, GrabModeAsync, win, None, CurrentTime);
268 #if !defined(__APPLE__) && !defined(SUNOS)
271 int MajorVersion, MinorVersion;
273 if (!XF86DGAQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
275 // unable to query, probably not supported
276 Con_Print( "Failed to detect XF86DGA Mouse\n" );
277 Cvar_SetValueQuick(&vid_dga, 0);
278 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, vid.width / 2, vid.height / 2);
282 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), XF86DGADirectMouse);
283 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
288 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, vid.width / 2, vid.height / 2);
290 if (vid_grabkeyboard.integer || vid_isfullscreen)
291 XGrabKeyboard(vidx11_display, win, False, GrabModeAsync, GrabModeAsync, CurrentTime);
293 mouse_x = mouse_y = 0;
294 cl_ignoremousemove = true;
295 vid_usingmouse = true;
302 #if !defined(__APPLE__) && !defined(SUNOS)
304 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), 0);
307 XUngrabPointer(vidx11_display, CurrentTime);
308 XUngrabKeyboard(vidx11_display, CurrentTime);
312 XUndefineCursor(vidx11_display, win);
314 cl_ignoremousemove = true;
315 vid_usingmouse = false;
320 static keynum_t buttonremap[18] =
342 static void HandleEvents(void)
347 qboolean dowarp = false;
352 while (XPending(vidx11_display))
354 XNextEvent(vidx11_display, &event);
360 key = XLateKey (&event.xkey, &ascii);
361 Key_Event(key, ascii, true);
366 key = XLateKey (&event.xkey, &ascii);
367 Key_Event(key, ascii, false);
374 #if !defined(__APPLE__) && !defined(SUNOS)
375 if (vid_dga.integer == 1)
377 mouse_x += event.xmotion.x_root * vid_dga_mouseaccel.value;
378 mouse_y += event.xmotion.y_root * vid_dga_mouseaccel.value;
384 if (!event.xmotion.send_event)
386 mouse_x += event.xmotion.x - p_mouse_x;
387 mouse_y += event.xmotion.y - p_mouse_y;
388 if (abs(vid.width/2 - event.xmotion.x) > vid.width / 4 || abs(vid.height/2 - event.xmotion.y) > vid.height / 4)
391 p_mouse_x = event.xmotion.x;
392 p_mouse_y = event.xmotion.y;
396 // ui_mouseupdate(event.xmotion.x, event.xmotion.y);
400 // mouse button pressed
401 if (event.xbutton.button <= 18)
402 Key_Event(buttonremap[event.xbutton.button - 1], 0, true);
404 Con_Printf("HandleEvents: ButtonPress gave value %d, 1-18 expected\n", event.xbutton.button);
408 // mouse button released
409 if (event.xbutton.button <= 18)
410 Key_Event(buttonremap[event.xbutton.button - 1], 0, false);
412 Con_Printf("HandleEvents: ButtonRelease gave value %d, 1-18 expected\n", event.xbutton.button);
417 win_x = event.xcreatewindow.x;
418 win_y = event.xcreatewindow.y;
421 case ConfigureNotify:
422 // window changed size/location
423 win_x = event.xconfigure.x;
424 win_y = event.xconfigure.y;
427 // window has been destroyed
431 // window manager messages
432 if ((event.xclient.format == 32) && ((unsigned int)event.xclient.data.l[0] == wm_delete_window_atom))
438 VID_RestoreSystemGamma();
441 // window iconified/rolledup/whatever
443 VID_RestoreSystemGamma();
446 // window is now the input focus
447 vid_activewindow = true;
450 // window is no longer the input focus
451 vid_activewindow = false;
452 VID_RestoreSystemGamma();
455 // mouse entered window
465 /* move the mouse to the window center again */
466 p_mouse_x = vid.width / 2;
467 p_mouse_y = vid.height / 2;
468 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, p_mouse_x, p_mouse_y);
472 static void *prjobj = NULL;
474 static void GL_CloseLibrary(void)
480 qglXGetProcAddressARB = NULL;
483 gl_platformextensions = "";
486 static int GL_OpenLibrary(const char *name)
488 Con_Printf("Loading OpenGL driver %s\n", name);
490 if (!(prjobj = dlopen(name, RTLD_LAZY | RTLD_GLOBAL)))
492 Con_Printf("Unable to open symbol list for %s\n", name);
495 strlcpy(gl_driver, name, sizeof(gl_driver));
499 void *GL_GetProcAddress(const char *name)
502 if (qglXGetProcAddressARB != NULL)
503 p = (void *) qglXGetProcAddressARB((GLubyte *)name);
505 p = (void *) dlsym(prjobj, name);
509 void VID_Shutdown(void)
511 if (!ctx || !vidx11_display)
517 VID_RestoreSystemGamma();
519 // FIXME: glXDestroyContext here?
520 if (vid_isfullscreen)
521 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, &init_vidmode);
523 XDestroyWindow(vidx11_display, win);
524 XCloseDisplay(vidx11_display);
527 vid_isfullscreen = false;
528 vidx11_display = NULL;
536 void signal_handler(int sig)
538 Con_Printf("Received signal %d, exiting...\n", sig);
539 VID_RestoreSystemGamma();
545 signal(SIGHUP, signal_handler);
546 signal(SIGINT, signal_handler);
547 signal(SIGQUIT, signal_handler);
548 signal(SIGILL, signal_handler);
549 signal(SIGTRAP, signal_handler);
550 signal(SIGIOT, signal_handler);
551 signal(SIGBUS, signal_handler);
552 signal(SIGFPE, signal_handler);
553 signal(SIGSEGV, signal_handler);
554 signal(SIGTERM, signal_handler);
557 void VID_Finish (qboolean allowmousegrab)
559 qboolean vid_usemouse;
561 vid_usevsync = vid_vsync.integer && !cls.timedemo && gl_videosyncavailable;
562 if (vid_usingvsync != vid_usevsync && gl_videosyncavailable)
564 vid_usingvsync = vid_usevsync;
565 if (qglXSwapIntervalSGI (vid_usevsync))
566 Con_Print("glXSwapIntervalSGI didn't accept the vid_vsync change, it will take effect on next vid_restart (GLX_SGI_swap_control does not allow turning off vsync)\n");
569 // handle the mouse state when windowed if that's changed
570 vid_usemouse = false;
571 if (allowmousegrab && vid_mouse.integer && !key_consoleactive && (key_dest != key_game || !cls.demoplayback))
573 if (!vid_activewindow)
574 vid_usemouse = false;
575 if (vid_isfullscreen)
577 IN_Activate(vid_usemouse);
579 if (r_render.integer)
582 if (r_speeds.integer || gl_finish.integer)
584 qglFinish();CHECKGLERROR
586 qglXSwapBuffers(vidx11_display, win);CHECKGLERROR
589 if (vid_x11_hardwaregammasupported)
590 VID_UpdateGamma(false, vid_x11_gammarampsize);
593 int VID_SetGamma(unsigned short *ramps, int rampsize)
595 return XF86VidModeSetGammaRamp(vidx11_display, vidx11_screen, rampsize, ramps, ramps + rampsize, ramps + rampsize*2);
598 int VID_GetGamma(unsigned short *ramps, int rampsize)
600 return XF86VidModeGetGammaRamp(vidx11_display, vidx11_screen, rampsize, ramps, ramps + rampsize, ramps + rampsize*2);
605 #if !defined(__APPLE__) && !defined(SUNOS)
606 Cvar_RegisterVariable (&vid_dga);
607 Cvar_RegisterVariable (&vid_dga_mouseaccel);
609 InitSig(); // trap evil signals
610 // COMMANDLINEOPTION: Input: -nomouse disables mouse support (see also vid_mouse cvar)
611 if (COM_CheckParm ("-nomouse"))
615 void VID_BuildGLXAttrib(int *attrib, qboolean stencil, qboolean stereobuffer)
617 *attrib++ = GLX_RGBA;
618 *attrib++ = GLX_RED_SIZE;*attrib++ = 1;
619 *attrib++ = GLX_GREEN_SIZE;*attrib++ = 1;
620 *attrib++ = GLX_BLUE_SIZE;*attrib++ = 1;
621 *attrib++ = GLX_DOUBLEBUFFER;
622 *attrib++ = GLX_DEPTH_SIZE;*attrib++ = 1;
623 // if stencil is enabled, ask for alpha too
626 *attrib++ = GLX_STENCIL_SIZE;*attrib++ = 8;
627 *attrib++ = GLX_ALPHA_SIZE;*attrib++ = 1;
630 *attrib++ = GLX_STEREO;
634 int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate, int stereobuffer)
638 XSetWindowAttributes attr;
641 XVisualInfo *visinfo;
642 int MajorVersion, MinorVersion;
643 const char *drivername;
645 #if defined(__APPLE__) && defined(__MACH__)
646 drivername = "/usr/X11R6/lib/libGL.1.dylib";
648 drivername = "libGL.so.1";
650 // COMMANDLINEOPTION: Linux GLX: -gl_driver <drivername> selects a GL driver library, default is libGL.so.1, useful only for using fxmesa or similar, if you don't know what this is for, you don't need it
651 // COMMANDLINEOPTION: BSD GLX: -gl_driver <drivername> selects a GL driver library, default is libGL.so.1, useful only for using fxmesa or similar, if you don't know what this is for, you don't need it
652 // LordHavoc: although this works on MacOSX, it's useless there (as there is only one system libGL)
653 i = COM_CheckParm("-gl_driver");
654 if (i && i < com_argc - 1)
655 drivername = com_argv[i + 1];
656 if (!GL_OpenLibrary(drivername))
658 Con_Printf("Unable to load GL driver \"%s\"\n", drivername);
662 if (!(vidx11_display = XOpenDisplay(NULL)))
664 Con_Print("Couldn't open the X display\n");
668 vidx11_screen = DefaultScreen(vidx11_display);
669 root = RootWindow(vidx11_display, vidx11_screen);
671 // Get video mode list
672 MajorVersion = MinorVersion = 0;
673 if (!XF86VidModeQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
677 Con_DPrintf("Using XFree86-VidModeExtension Version %d.%d\n", MajorVersion, MinorVersion);
681 if ((qglXChooseVisual = (XVisualInfo *(GLAPIENTRY *)(Display *dpy, int screen, int *attribList))GL_GetProcAddress("glXChooseVisual")) == NULL
682 || (qglXCreateContext = (GLXContext (GLAPIENTRY *)(Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct))GL_GetProcAddress("glXCreateContext")) == NULL
683 || (qglXDestroyContext = (void (GLAPIENTRY *)(Display *dpy, GLXContext ctx))GL_GetProcAddress("glXDestroyContext")) == NULL
684 || (qglXMakeCurrent = (Bool (GLAPIENTRY *)(Display *dpy, GLXDrawable drawable, GLXContext ctx))GL_GetProcAddress("glXMakeCurrent")) == NULL
685 || (qglXSwapBuffers = (void (GLAPIENTRY *)(Display *dpy, GLXDrawable drawable))GL_GetProcAddress("glXSwapBuffers")) == NULL
686 || (qglXQueryExtensionsString = (const char *(GLAPIENTRY *)(Display *dpy, int screen))GL_GetProcAddress("glXQueryExtensionsString")) == NULL)
688 Con_Printf("glX functions not found in %s\n", gl_driver);
692 VID_BuildGLXAttrib(attrib, bpp == 32, stereobuffer);
693 visinfo = qglXChooseVisual(vidx11_display, vidx11_screen, attrib);
696 Con_Print("Couldn't get an RGB, Double-buffered, Depth visual\n");
702 int best_fit, best_dist, dist, x, y;
704 // Are we going fullscreen? If so, let's change video mode
707 XF86VidModeModeLine *current_vidmode;
708 XF86VidModeModeInfo **vidmodes;
711 // This nice hack comes from the SDL source code
712 current_vidmode = (XF86VidModeModeLine*)((char*)&init_vidmode + sizeof(init_vidmode.dotclock));
713 XF86VidModeGetModeLine(vidx11_display, vidx11_screen, (int*)&init_vidmode.dotclock, current_vidmode);
715 XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
719 for (i = 0; i < num_vidmodes; i++)
721 if (width > vidmodes[i]->hdisplay || height > vidmodes[i]->vdisplay)
724 x = width - vidmodes[i]->hdisplay;
725 y = height - vidmodes[i]->vdisplay;
726 dist = (x * x) + (y * y);
727 if (dist < best_dist)
736 // LordHavoc: changed from ActualWidth/ActualHeight =,
737 // to width/height =, so the window will take the full area of
739 width = vidmodes[best_fit]->hdisplay;
740 height = vidmodes[best_fit]->vdisplay;
742 // change to the mode
743 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, vidmodes[best_fit]);
744 vid_isfullscreen = true;
746 // Move the viewport to top left
747 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
756 // LordHavoc: save the visual for use in gamma ramp settings later
757 vidx11_visual = visinfo->visual;
759 /* window attributes */
760 attr.background_pixel = 0;
761 attr.border_pixel = 0;
762 // LordHavoc: save the colormap for later, too
763 vidx11_colormap = attr.colormap = XCreateColormap(vidx11_display, root, visinfo->visual, AllocNone);
764 attr.event_mask = X_MASK;
765 if (vid_isfullscreen)
767 mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask | CWOverrideRedirect;
768 attr.override_redirect = True;
769 attr.backing_store = NotUseful;
770 attr.save_under = False;
773 mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
775 win = XCreateWindow(vidx11_display, root, 0, 0, width, height, 0, visinfo->depth, InputOutput, visinfo->visual, mask, &attr);
776 XStoreName(vidx11_display, win, gamename);
777 XMapWindow(vidx11_display, win);
779 // LordHavoc: making the close button on a window do the right thing
780 // seems to involve this mess, sigh...
781 wm_delete_window_atom = XInternAtom(vidx11_display, "WM_DELETE_WINDOW", false);
782 XSetWMProtocols(vidx11_display, win, &wm_delete_window_atom, 1);
784 if (vid_isfullscreen)
786 XMoveWindow(vidx11_display, win, 0, 0);
787 XRaiseWindow(vidx11_display, win);
788 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
789 XFlush(vidx11_display);
790 // Move the viewport to top left
791 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
794 //XSync(vidx11_display, False);
796 ctx = qglXCreateContext(vidx11_display, visinfo, NULL, True);
799 Con_Printf ("glXCreateContext failed\n");
803 if (!qglXMakeCurrent(vidx11_display, win, ctx))
805 Con_Printf ("glXMakeCurrent failed\n");
809 XSync(vidx11_display, False);
811 if ((qglGetString = (const GLubyte* (GLAPIENTRY *)(GLenum name))GL_GetProcAddress("glGetString")) == NULL)
813 Con_Printf ("glGetString not found in %s\n", gl_driver);
817 gl_renderer = (const char *)qglGetString(GL_RENDERER);
818 gl_vendor = (const char *)qglGetString(GL_VENDOR);
819 gl_version = (const char *)qglGetString(GL_VERSION);
820 gl_extensions = (const char *)qglGetString(GL_EXTENSIONS);
822 gl_platformextensions = qglXQueryExtensionsString(vidx11_display, vidx11_screen);
824 gl_videosyncavailable = false;
826 // COMMANDLINEOPTION: Linux GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
827 // COMMANDLINEOPTION: BSD GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
828 // COMMANDLINEOPTION: MacOSX GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
829 GL_CheckExtension("GLX_ARB_get_proc_address", getprocaddressfuncs, "-nogetprocaddress", false);
830 // COMMANDLINEOPTION: Linux GLX: -novideosync disables GLX_SGI_swap_control
831 // COMMANDLINEOPTION: BSD GLX: -novideosync disables GLX_SGI_swap_control
832 // COMMANDLINEOPTION: MacOSX GLX: -novideosync disables GLX_SGI_swap_control
833 gl_videosyncavailable = GL_CheckExtension("GLX_SGI_swap_control", swapcontrolfuncs, "-novideosync", false);
835 vid_usingmouse = false;
836 vid_usingvsync = false;
838 vid_activewindow = true;
839 vid_x11_hardwaregammasupported = XF86VidModeGetGammaRampSize(vidx11_display, vidx11_screen, &vid_x11_gammarampsize) != 0;
844 void Sys_SendKeyEvents(void)
846 static qboolean sound_active = true;
848 // enable/disable sound on focus gain/loss
849 if (!vid_activewindow && sound_active)
852 sound_active = false;
854 else if (vid_activewindow && !sound_active)
867 in_mouse_x = mouse_x;
868 in_mouse_y = mouse_y;