]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - vid_shared.c
disable VorteX's multisample setup code because it crashes vid_restart
[xonotic/darkplaces.git] / vid_shared.c
1
2 #include "quakedef.h"
3 #include "cdaudio.h"
4
5 #ifdef SUPPORTD3D
6 #include <d3d9.h>
7 #ifdef _MSC_VER
8 #pragma comment(lib, "d3d9.lib")
9 #endif
10
11 LPDIRECT3DDEVICE9 vid_d3d9dev;
12 #endif
13
14 #ifdef WIN32
15 //#include <XInput.h>
16 #define XINPUT_GAMEPAD_DPAD_UP          0x0001
17 #define XINPUT_GAMEPAD_DPAD_DOWN        0x0002
18 #define XINPUT_GAMEPAD_DPAD_LEFT        0x0004
19 #define XINPUT_GAMEPAD_DPAD_RIGHT       0x0008
20 #define XINPUT_GAMEPAD_START            0x0010
21 #define XINPUT_GAMEPAD_BACK             0x0020
22 #define XINPUT_GAMEPAD_LEFT_THUMB       0x0040
23 #define XINPUT_GAMEPAD_RIGHT_THUMB      0x0080
24 #define XINPUT_GAMEPAD_LEFT_SHOULDER    0x0100
25 #define XINPUT_GAMEPAD_RIGHT_SHOULDER   0x0200
26 #define XINPUT_GAMEPAD_A                0x1000
27 #define XINPUT_GAMEPAD_B                0x2000
28 #define XINPUT_GAMEPAD_X                0x4000
29 #define XINPUT_GAMEPAD_Y                0x8000
30 #define XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE  7849
31 #define XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE 8689
32 #define XINPUT_GAMEPAD_TRIGGER_THRESHOLD    30
33 #define XUSER_INDEX_ANY                 0x000000FF
34
35 typedef struct xinput_gamepad_s
36 {
37         WORD wButtons;
38         BYTE bLeftTrigger;
39         BYTE bRightTrigger;
40         SHORT sThumbLX;
41         SHORT sThumbLY;
42         SHORT sThumbRX;
43         SHORT sThumbRY;
44 }
45 xinput_gamepad_t;
46
47 typedef struct xinput_state_s
48 {
49         DWORD dwPacketNumber;
50         xinput_gamepad_t Gamepad;
51 }
52 xinput_state_t;
53
54 typedef struct xinput_keystroke_s
55 {
56     WORD    VirtualKey;
57     WCHAR   Unicode;
58     WORD    Flags;
59     BYTE    UserIndex;
60     BYTE    HidCode;
61 }
62 xinput_keystroke_t;
63
64 DWORD (WINAPI *qXInputGetState)(DWORD index, xinput_state_t *state);
65 DWORD (WINAPI *qXInputGetKeystroke)(DWORD index, DWORD reserved, xinput_keystroke_t *keystroke);
66
67 qboolean vid_xinputinitialized = false;
68 int vid_xinputindex = -1;
69 #endif
70
71 // global video state
72 viddef_t vid;
73
74 // LordHavoc: these are only set in wgl
75 qboolean isG200 = false; // LordHavoc: the Matrox G200 can't do per pixel alpha, and it uses a D3D driver for GL... ugh...
76 qboolean isRagePro = false; // LordHavoc: the ATI Rage Pro has limitations with per pixel alpha (the color scaler does not apply to per pixel alpha images...), although not as bad as a G200.
77
78 // AK FIXME -> input_dest
79 qboolean in_client_mouse = true;
80
81 // AK where should it be placed ?
82 float in_mouse_x, in_mouse_y;
83 float in_windowmouse_x, in_windowmouse_y;
84
85 // LordHavoc: if window is hidden, don't update screen
86 qboolean vid_hidden = true;
87 // LordHavoc: if window is not the active window, don't hog as much CPU time,
88 // let go of the mouse, turn off sound, and restore system gamma ramps...
89 qboolean vid_activewindow = true;
90
91 vid_joystate_t vid_joystate;
92
93 #ifdef WIN32
94 cvar_t joy_xinputavailable = {CVAR_READONLY, "joy_xinputavailable", "0", "indicates which devices are being reported by the Windows XInput API (first controller = 1, second = 2, third = 4, fourth = 8, added together)"};
95 #endif
96 cvar_t joy_active = {CVAR_READONLY, "joy_active", "0", "indicates that a joystick is active (detected and enabled)"};
97 cvar_t joy_detected = {CVAR_READONLY, "joy_detected", "0", "number of joysticks detected by engine"};
98 cvar_t joy_enable = {CVAR_SAVE, "joy_enable", "0", "enables joystick support"};
99 cvar_t joy_index = {0, "joy_index", "0", "selects which joystick to use if you have multiple (0 uses the first controller, 1 uses the second, ...)"};
100 cvar_t joy_axisforward = {0, "joy_axisforward", "1", "which joystick axis to query for forward/backward movement"};
101 cvar_t joy_axisside = {0, "joy_axisside", "0", "which joystick axis to query for right/left movement"};
102 cvar_t joy_axisup = {0, "joy_axisup", "-1", "which joystick axis to query for up/down movement"};
103 cvar_t joy_axispitch = {0, "joy_axispitch", "3", "which joystick axis to query for looking up/down"};
104 cvar_t joy_axisyaw = {0, "joy_axisyaw", "2", "which joystick axis to query for looking right/left"};
105 cvar_t joy_axisroll = {0, "joy_axisroll", "-1", "which joystick axis to query for tilting head right/left"};
106 cvar_t joy_deadzoneforward = {0, "joy_deadzoneforward", "0", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
107 cvar_t joy_deadzoneside = {0, "joy_deadzoneside", "0", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
108 cvar_t joy_deadzoneup = {0, "joy_deadzoneup", "0", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
109 cvar_t joy_deadzonepitch = {0, "joy_deadzonepitch", "0", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
110 cvar_t joy_deadzoneyaw = {0, "joy_deadzoneyaw", "0", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
111 cvar_t joy_deadzoneroll = {0, "joy_deadzoneroll", "0", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
112 cvar_t joy_sensitivityforward = {0, "joy_sensitivityforward", "-1", "movement multiplier"};
113 cvar_t joy_sensitivityside = {0, "joy_sensitivityside", "1", "movement multiplier"};
114 cvar_t joy_sensitivityup = {0, "joy_sensitivityup", "1", "movement multiplier"};
115 cvar_t joy_sensitivitypitch = {0, "joy_sensitivitypitch", "1", "movement multiplier"};
116 cvar_t joy_sensitivityyaw = {0, "joy_sensitivityyaw", "-1", "movement multiplier"};
117 cvar_t joy_sensitivityroll = {0, "joy_sensitivityroll", "1", "movement multiplier"};
118 cvar_t joy_axiskeyevents = {CVAR_SAVE, "joy_axiskeyevents", "0", "generate uparrow/leftarrow etc. keyevents for joystick axes, use if your joystick driver is not generating them"};
119 cvar_t joy_axiskeyevents_deadzone = {CVAR_SAVE, "joy_axiskeyevents_deadzone", "0.5", "deadzone value for axes"};
120 cvar_t joy_x360_axisforward = {0, "joy_x360_axisforward", "1", "which joystick axis to query for forward/backward movement"};
121 cvar_t joy_x360_axisside = {0, "joy_x360_axisside", "0", "which joystick axis to query for right/left movement"};
122 cvar_t joy_x360_axisup = {0, "joy_x360_axisup", "-1", "which joystick axis to query for up/down movement"};
123 cvar_t joy_x360_axispitch = {0, "joy_x360_axispitch", "3", "which joystick axis to query for looking up/down"};
124 cvar_t joy_x360_axisyaw = {0, "joy_x360_axisyaw", "2", "which joystick axis to query for looking right/left"};
125 cvar_t joy_x360_axisroll = {0, "joy_x360_axisroll", "-1", "which joystick axis to query for tilting head right/left"};
126 cvar_t joy_x360_deadzoneforward = {0, "joy_x360_deadzoneforward", "0.266", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
127 cvar_t joy_x360_deadzoneside = {0, "joy_x360_deadzoneside", "0.266", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
128 cvar_t joy_x360_deadzoneup = {0, "joy_x360_deadzoneup", "0.266", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
129 cvar_t joy_x360_deadzonepitch = {0, "joy_x360_deadzonepitch", "0.266", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
130 cvar_t joy_x360_deadzoneyaw = {0, "joy_x360_deadzoneyaw", "0.266", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
131 cvar_t joy_x360_deadzoneroll = {0, "joy_x360_deadzoneroll", "0.266", "deadzone tolerance, suggested values are in the range 0 to 0.01"};
132 cvar_t joy_x360_sensitivityforward = {0, "joy_x360_sensitivityforward", "1", "movement multiplier"};
133 cvar_t joy_x360_sensitivityside = {0, "joy_x360_sensitivityside", "1", "movement multiplier"};
134 cvar_t joy_x360_sensitivityup = {0, "joy_x360_sensitivityup", "1", "movement multiplier"};
135 cvar_t joy_x360_sensitivitypitch = {0, "joy_x360_sensitivitypitch", "-1", "movement multiplier"};
136 cvar_t joy_x360_sensitivityyaw = {0, "joy_x360_sensitivityyaw", "-1", "movement multiplier"};
137 cvar_t joy_x360_sensitivityroll = {0, "joy_x360_sensitivityroll", "1", "movement multiplier"};
138
139 // cvars for DPSOFTRAST
140 cvar_t vid_soft = {CVAR_SAVE, "vid_soft", "0", "enables use of the DarkPlaces Software Rasterizer rather than OpenGL or Direct3D"};
141 cvar_t vid_soft_threads = {CVAR_SAVE, "vid_soft_threads", "2", "the number of threads the DarkPlaces Software Rasterizer should use"}; 
142 cvar_t vid_soft_interlace = {CVAR_SAVE, "vid_soft_interlace", "1", "whether the DarkPlaces Software Rasterizer should interlace the screen bands occupied by each thread"};
143
144 // we don't know until we try it!
145 cvar_t vid_hardwaregammasupported = {CVAR_READONLY,"vid_hardwaregammasupported","1", "indicates whether hardware gamma is supported (updated by attempts to set hardware gamma ramps)"};
146
147 // VorteX: more info cvars, mostly set in VID_CheckExtensions
148 cvar_t gl_info_vendor = {CVAR_READONLY, "gl_info_vendor", "", "indicates brand of graphics chip"};
149 cvar_t gl_info_renderer = {CVAR_READONLY, "gl_info_renderer", "", "indicates graphics chip model and other information"};
150 cvar_t gl_info_version = {CVAR_READONLY, "gl_info_version", "", "indicates version of current renderer. begins with 1.0.0, 1.1.0, 1.2.0, 1.3.1 etc."};
151 cvar_t gl_info_extensions = {CVAR_READONLY, "gl_info_extensions", "", "indicates extension list found by engine, space separated."};
152 cvar_t gl_info_platform = {CVAR_READONLY, "gl_info_platform", "", "indicates GL platform: WGL, GLX, or AGL."};
153 cvar_t gl_info_driver = {CVAR_READONLY, "gl_info_driver", "", "name of driver library (opengl32.dll, libGL.so.1, or whatever)."};
154
155 // whether hardware gamma ramps are currently in effect
156 qboolean vid_usinghwgamma = false;
157
158 int vid_gammarampsize = 0;
159 unsigned short *vid_gammaramps = NULL;
160 unsigned short *vid_systemgammaramps = NULL;
161
162 cvar_t vid_fullscreen = {CVAR_SAVE, "vid_fullscreen", "1", "use fullscreen (1) or windowed (0)"};
163 cvar_t vid_width = {CVAR_SAVE, "vid_width", "640", "resolution"};
164 cvar_t vid_height = {CVAR_SAVE, "vid_height", "480", "resolution"};
165 cvar_t vid_bitsperpixel = {CVAR_SAVE, "vid_bitsperpixel", "32", "how many bits per pixel to render at (32 or 16, 32 is recommended)"};
166 cvar_t vid_samples = {CVAR_SAVE, "vid_samples", "1", "how many anti-aliasing samples per pixel to request from the graphics driver (4 is recommended, 1 is faster)"};
167 cvar_t vid_multisampling = {CVAR_SAVE, "vid_multisampling", "0", "Make use of GL_AGB_MULTISAMPLING for advaced anti-aliasing techniques such as Alpha-To-Coverage, not yet finished"};
168 cvar_t vid_refreshrate = {CVAR_SAVE, "vid_refreshrate", "60", "refresh rate to use, in hz (higher values flicker less, if supported by your monitor)"};
169 cvar_t vid_userefreshrate = {CVAR_SAVE, "vid_userefreshrate", "0", "set this to 1 to make vid_refreshrate used, or to 0 to let the engine choose a sane default"};
170 cvar_t vid_stereobuffer = {CVAR_SAVE, "vid_stereobuffer", "0", "enables 'quad-buffered' stereo rendering for stereo shutterglasses, HMD (head mounted display) devices, or polarized stereo LCDs, if supported by your drivers"};
171
172 cvar_t vid_vsync = {CVAR_SAVE, "vid_vsync", "0", "sync to vertical blank, prevents 'tearing' (seeing part of one frame and part of another on the screen at the same time), automatically disabled when doing timedemo benchmarks"};
173 cvar_t vid_mouse = {CVAR_SAVE, "vid_mouse", "1", "whether to use the mouse in windowed mode (fullscreen always does)"};
174 cvar_t vid_grabkeyboard = {CVAR_SAVE, "vid_grabkeyboard", "0", "whether to grab the keyboard when mouse is active (prevents use of volume control keys, music player keys, etc on some keyboards)"};
175 cvar_t vid_minwidth = {0, "vid_minwidth", "0", "minimum vid_width that is acceptable (to be set in default.cfg in mods)"};
176 cvar_t vid_minheight = {0, "vid_minheight", "0", "minimum vid_height that is acceptable (to be set in default.cfg in mods)"};
177 cvar_t vid_gl13 = {0, "vid_gl13", "1", "enables faster rendering using OpenGL 1.3 features (such as GL_ARB_texture_env_combine extension)"};
178 cvar_t vid_gl20 = {0, "vid_gl20", "1", "enables faster rendering using OpenGL 2.0 features (such as GL_ARB_fragment_shader extension)"};
179 cvar_t gl_finish = {0, "gl_finish", "0", "make the cpu wait for the graphics processor at the end of each rendered frame (can help with strange input or video lag problems on some machines)"};
180 cvar_t vid_sRGB = {CVAR_SAVE, "vid_sRGB", "0", "if hardware is capable, modify rendering to be gamma corrected for the sRGB color standard (computer monitors, TVs), recommended"};
181
182 cvar_t vid_touchscreen = {0, "vid_touchscreen", "0", "Use touchscreen-style input (no mouse grab, track mouse motion only while button is down, screen areas for mimicing joystick axes and buttons"};
183 cvar_t vid_stick_mouse = {CVAR_SAVE, "vid_stick_mouse", "0", "have the mouse stuck in the center of the screen" };
184 cvar_t vid_resizable = {CVAR_SAVE, "vid_resizable", "0", "0: window not resizable, 1: resizable, 2: window can be resized but the framebuffer isn't adjusted" };
185
186 cvar_t v_gamma = {CVAR_SAVE, "v_gamma", "1", "inverse gamma correction value, a brightness effect that does not affect white or black, and tends to make the image grey and dull"};
187 cvar_t v_contrast = {CVAR_SAVE, "v_contrast", "1", "brightness of white (values above 1 give a brighter image with increased color saturation, unlike v_gamma)"};
188 cvar_t v_brightness = {CVAR_SAVE, "v_brightness", "0", "brightness of black, useful for monitors that are too dark"};
189 cvar_t v_contrastboost = {CVAR_SAVE, "v_contrastboost", "1", "by how much to multiply the contrast in dark areas (1 is no change)"};
190 cvar_t v_color_enable = {CVAR_SAVE, "v_color_enable", "0", "enables black-grey-white color correction curve controls"};
191 cvar_t v_color_black_r = {CVAR_SAVE, "v_color_black_r", "0", "desired color of black"};
192 cvar_t v_color_black_g = {CVAR_SAVE, "v_color_black_g", "0", "desired color of black"};
193 cvar_t v_color_black_b = {CVAR_SAVE, "v_color_black_b", "0", "desired color of black"};
194 cvar_t v_color_grey_r = {CVAR_SAVE, "v_color_grey_r", "0.5", "desired color of grey"};
195 cvar_t v_color_grey_g = {CVAR_SAVE, "v_color_grey_g", "0.5", "desired color of grey"};
196 cvar_t v_color_grey_b = {CVAR_SAVE, "v_color_grey_b", "0.5", "desired color of grey"};
197 cvar_t v_color_white_r = {CVAR_SAVE, "v_color_white_r", "1", "desired color of white"};
198 cvar_t v_color_white_g = {CVAR_SAVE, "v_color_white_g", "1", "desired color of white"};
199 cvar_t v_color_white_b = {CVAR_SAVE, "v_color_white_b", "1", "desired color of white"};
200 cvar_t v_hwgamma = {CVAR_SAVE, "v_hwgamma", "0", "enables use of hardware gamma correction ramps if available (note: does not work very well on Windows2000 and above), values are 0 = off, 1 = attempt to use hardware gamma, 2 = use hardware gamma whether it works or not"};
201 cvar_t v_glslgamma = {CVAR_SAVE, "v_glslgamma", "1", "enables use of GLSL to apply gamma correction ramps if available (note: overrides v_hwgamma)"};
202 cvar_t v_psycho = {0, "v_psycho", "0", "easter egg"};
203
204 // brand of graphics chip
205 const char *gl_vendor;
206 // graphics chip model and other information
207 const char *gl_renderer;
208 // begins with 1.0.0, 1.1.0, 1.2.0, 1.2.1, 1.3.0, 1.3.1, or 1.4.0
209 const char *gl_version;
210 // extensions list, space separated
211 const char *gl_extensions;
212 // WGL, GLX, or AGL
213 const char *gl_platform;
214 // another extensions list, containing platform-specific extensions that are
215 // not in the main list
216 const char *gl_platformextensions;
217 // name of driver library (opengl32.dll, libGL.so.1, or whatever)
218 char gl_driver[256];
219
220 // GL_ARB_multitexture
221 void (GLAPIENTRY *qglMultiTexCoord1f) (GLenum, GLfloat);
222 void (GLAPIENTRY *qglMultiTexCoord2f) (GLenum, GLfloat, GLfloat);
223 void (GLAPIENTRY *qglMultiTexCoord3f) (GLenum, GLfloat, GLfloat, GLfloat);
224 void (GLAPIENTRY *qglMultiTexCoord4f) (GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
225 void (GLAPIENTRY *qglActiveTexture) (GLenum);
226 void (GLAPIENTRY *qglClientActiveTexture) (GLenum);
227
228 // general GL functions
229
230 void (GLAPIENTRY *qglClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
231
232 void (GLAPIENTRY *qglClear)(GLbitfield mask);
233
234 void (GLAPIENTRY *qglAlphaFunc)(GLenum func, GLclampf ref);
235 void (GLAPIENTRY *qglBlendFunc)(GLenum sfactor, GLenum dfactor);
236 void (GLAPIENTRY *qglCullFace)(GLenum mode);
237
238 void (GLAPIENTRY *qglDrawBuffer)(GLenum mode);
239 void (GLAPIENTRY *qglReadBuffer)(GLenum mode);
240 void (GLAPIENTRY *qglEnable)(GLenum cap);
241 void (GLAPIENTRY *qglDisable)(GLenum cap);
242 GLboolean (GLAPIENTRY *qglIsEnabled)(GLenum cap);
243
244 void (GLAPIENTRY *qglEnableClientState)(GLenum cap);
245 void (GLAPIENTRY *qglDisableClientState)(GLenum cap);
246
247 void (GLAPIENTRY *qglGetBooleanv)(GLenum pname, GLboolean *params);
248 void (GLAPIENTRY *qglGetDoublev)(GLenum pname, GLdouble *params);
249 void (GLAPIENTRY *qglGetFloatv)(GLenum pname, GLfloat *params);
250 void (GLAPIENTRY *qglGetIntegerv)(GLenum pname, GLint *params);
251
252 GLenum (GLAPIENTRY *qglGetError)(void);
253 const GLubyte* (GLAPIENTRY *qglGetString)(GLenum name);
254 void (GLAPIENTRY *qglFinish)(void);
255 void (GLAPIENTRY *qglFlush)(void);
256
257 void (GLAPIENTRY *qglClearDepth)(GLclampd depth);
258 void (GLAPIENTRY *qglDepthFunc)(GLenum func);
259 void (GLAPIENTRY *qglDepthMask)(GLboolean flag);
260 void (GLAPIENTRY *qglDepthRange)(GLclampd near_val, GLclampd far_val);
261 void (GLAPIENTRY *qglColorMask)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
262
263 void (GLAPIENTRY *qglDrawRangeElements)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
264 void (GLAPIENTRY *qglDrawElements)(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
265 void (GLAPIENTRY *qglDrawArrays)(GLenum mode, GLint first, GLsizei count);
266 void (GLAPIENTRY *qglVertexPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
267 void (GLAPIENTRY *qglNormalPointer)(GLenum type, GLsizei stride, const GLvoid *ptr);
268 void (GLAPIENTRY *qglColorPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
269 void (GLAPIENTRY *qglTexCoordPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
270 void (GLAPIENTRY *qglArrayElement)(GLint i);
271
272 void (GLAPIENTRY *qglColor4ub)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
273 void (GLAPIENTRY *qglColor4f)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
274 void (GLAPIENTRY *qglTexCoord1f)(GLfloat s);
275 void (GLAPIENTRY *qglTexCoord2f)(GLfloat s, GLfloat t);
276 void (GLAPIENTRY *qglTexCoord3f)(GLfloat s, GLfloat t, GLfloat r);
277 void (GLAPIENTRY *qglTexCoord4f)(GLfloat s, GLfloat t, GLfloat r, GLfloat q);
278 void (GLAPIENTRY *qglVertex2f)(GLfloat x, GLfloat y);
279 void (GLAPIENTRY *qglVertex3f)(GLfloat x, GLfloat y, GLfloat z);
280 void (GLAPIENTRY *qglVertex4f)(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
281 void (GLAPIENTRY *qglBegin)(GLenum mode);
282 void (GLAPIENTRY *qglEnd)(void);
283
284 void (GLAPIENTRY *qglMatrixMode)(GLenum mode);
285 //void (GLAPIENTRY *qglOrtho)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val);
286 //void (GLAPIENTRY *qglFrustum)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val);
287 void (GLAPIENTRY *qglViewport)(GLint x, GLint y, GLsizei width, GLsizei height);
288 //void (GLAPIENTRY *qglPushMatrix)(void);
289 //void (GLAPIENTRY *qglPopMatrix)(void);
290 void (GLAPIENTRY *qglLoadIdentity)(void);
291 //void (GLAPIENTRY *qglLoadMatrixd)(const GLdouble *m);
292 void (GLAPIENTRY *qglLoadMatrixf)(const GLfloat *m);
293 //void (GLAPIENTRY *qglMultMatrixd)(const GLdouble *m);
294 //void (GLAPIENTRY *qglMultMatrixf)(const GLfloat *m);
295 //void (GLAPIENTRY *qglRotated)(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
296 //void (GLAPIENTRY *qglRotatef)(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
297 //void (GLAPIENTRY *qglScaled)(GLdouble x, GLdouble y, GLdouble z);
298 //void (GLAPIENTRY *qglScalef)(GLfloat x, GLfloat y, GLfloat z);
299 //void (GLAPIENTRY *qglTranslated)(GLdouble x, GLdouble y, GLdouble z);
300 //void (GLAPIENTRY *qglTranslatef)(GLfloat x, GLfloat y, GLfloat z);
301
302 void (GLAPIENTRY *qglReadPixels)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
303
304 void (GLAPIENTRY *qglStencilFunc)(GLenum func, GLint ref, GLuint mask);
305 void (GLAPIENTRY *qglStencilMask)(GLuint mask);
306 void (GLAPIENTRY *qglStencilOp)(GLenum fail, GLenum zfail, GLenum zpass);
307 void (GLAPIENTRY *qglClearStencil)(GLint s);
308
309 void (GLAPIENTRY *qglTexEnvf)(GLenum target, GLenum pname, GLfloat param);
310 void (GLAPIENTRY *qglTexEnvfv)(GLenum target, GLenum pname, const GLfloat *params);
311 void (GLAPIENTRY *qglTexEnvi)(GLenum target, GLenum pname, GLint param);
312 void (GLAPIENTRY *qglTexParameterf)(GLenum target, GLenum pname, GLfloat param);
313 void (GLAPIENTRY *qglTexParameterfv)(GLenum target, GLenum pname, GLfloat *params);
314 void (GLAPIENTRY *qglTexParameteri)(GLenum target, GLenum pname, GLint param);
315 void (GLAPIENTRY *qglGetTexParameterfv)(GLenum target, GLenum pname, GLfloat *params);
316 void (GLAPIENTRY *qglGetTexParameteriv)(GLenum target, GLenum pname, GLint *params);
317 void (GLAPIENTRY *qglGetTexLevelParameterfv)(GLenum target, GLint level, GLenum pname, GLfloat *params);
318 void (GLAPIENTRY *qglGetTexLevelParameteriv)(GLenum target, GLint level, GLenum pname, GLint *params);
319 void (GLAPIENTRY *qglGetTexImage)(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
320 void (GLAPIENTRY *qglHint)(GLenum target, GLenum mode);
321
322 void (GLAPIENTRY *qglGenTextures)(GLsizei n, GLuint *textures);
323 void (GLAPIENTRY *qglDeleteTextures)(GLsizei n, const GLuint *textures);
324 void (GLAPIENTRY *qglBindTexture)(GLenum target, GLuint texture);
325 //void (GLAPIENTRY *qglPrioritizeTextures)(GLsizei n, const GLuint *textures, const GLclampf *priorities);
326 //GLboolean (GLAPIENTRY *qglAreTexturesResident)(GLsizei n, const GLuint *textures, GLboolean *residences);
327 //GLboolean (GLAPIENTRY *qglIsTexture)(GLuint texture);
328 //void (GLAPIENTRY *qglPixelStoref)(GLenum pname, GLfloat param);
329 void (GLAPIENTRY *qglPixelStorei)(GLenum pname, GLint param);
330
331 //void (GLAPIENTRY *qglTexImage1D)(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
332 void (GLAPIENTRY *qglTexImage2D)(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
333 //void (GLAPIENTRY *qglTexSubImage1D)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
334 void (GLAPIENTRY *qglTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
335 //void (GLAPIENTRY *qglCopyTexImage1D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
336 void (GLAPIENTRY *qglCopyTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
337 //void (GLAPIENTRY *qglCopyTexSubImage1D)(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
338 void (GLAPIENTRY *qglCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
339
340
341 void (GLAPIENTRY *qglDrawRangeElementsEXT)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
342
343 //void (GLAPIENTRY *qglColorTableEXT)(int, int, int, int, int, const void *);
344
345 void (GLAPIENTRY *qglTexImage3D)(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
346 void (GLAPIENTRY *qglTexSubImage3D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
347 void (GLAPIENTRY *qglCopyTexSubImage3D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
348
349 void (GLAPIENTRY *qglScissor)(GLint x, GLint y, GLsizei width, GLsizei height);
350
351 void (GLAPIENTRY *qglPolygonOffset)(GLfloat factor, GLfloat units);
352 void (GLAPIENTRY *qglPolygonMode)(GLenum face, GLenum mode);
353 void (GLAPIENTRY *qglPolygonStipple)(const GLubyte *mask);
354
355 //void (GLAPIENTRY *qglClipPlane)(GLenum plane, const GLdouble *equation);
356 //void (GLAPIENTRY *qglGetClipPlane)(GLenum plane, GLdouble *equation);
357
358 //[515]: added on 29.07.2005
359 void (GLAPIENTRY *qglLineWidth)(GLfloat width);
360 void (GLAPIENTRY *qglPointSize)(GLfloat size);
361
362 void (GLAPIENTRY *qglBlendEquationEXT)(GLenum);
363
364 void (GLAPIENTRY *qglStencilOpSeparate)(GLenum, GLenum, GLenum, GLenum);
365 void (GLAPIENTRY *qglStencilFuncSeparate)(GLenum, GLenum, GLint, GLuint);
366 void (GLAPIENTRY *qglActiveStencilFaceEXT)(GLenum);
367
368 void (GLAPIENTRY *qglDeleteShader)(GLuint obj);
369 void (GLAPIENTRY *qglDeleteProgram)(GLuint obj);
370 //GLuint (GLAPIENTRY *qglGetHandle)(GLenum pname);
371 void (GLAPIENTRY *qglDetachShader)(GLuint containerObj, GLuint attachedObj);
372 GLuint (GLAPIENTRY *qglCreateShader)(GLenum shaderType);
373 void (GLAPIENTRY *qglShaderSource)(GLuint shaderObj, GLsizei count, const GLchar **string, const GLint *length);
374 void (GLAPIENTRY *qglCompileShader)(GLuint shaderObj);
375 GLuint (GLAPIENTRY *qglCreateProgram)(void);
376 void (GLAPIENTRY *qglAttachShader)(GLuint containerObj, GLuint obj);
377 void (GLAPIENTRY *qglLinkProgram)(GLuint programObj);
378 void (GLAPIENTRY *qglUseProgram)(GLuint programObj);
379 void (GLAPIENTRY *qglValidateProgram)(GLuint programObj);
380 void (GLAPIENTRY *qglUniform1f)(GLint location, GLfloat v0);
381 void (GLAPIENTRY *qglUniform2f)(GLint location, GLfloat v0, GLfloat v1);
382 void (GLAPIENTRY *qglUniform3f)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
383 void (GLAPIENTRY *qglUniform4f)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
384 void (GLAPIENTRY *qglUniform1i)(GLint location, GLint v0);
385 void (GLAPIENTRY *qglUniform2i)(GLint location, GLint v0, GLint v1);
386 void (GLAPIENTRY *qglUniform3i)(GLint location, GLint v0, GLint v1, GLint v2);
387 void (GLAPIENTRY *qglUniform4i)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
388 void (GLAPIENTRY *qglUniform1fv)(GLint location, GLsizei count, const GLfloat *value);
389 void (GLAPIENTRY *qglUniform2fv)(GLint location, GLsizei count, const GLfloat *value);
390 void (GLAPIENTRY *qglUniform3fv)(GLint location, GLsizei count, const GLfloat *value);
391 void (GLAPIENTRY *qglUniform4fv)(GLint location, GLsizei count, const GLfloat *value);
392 void (GLAPIENTRY *qglUniform1iv)(GLint location, GLsizei count, const GLint *value);
393 void (GLAPIENTRY *qglUniform2iv)(GLint location, GLsizei count, const GLint *value);
394 void (GLAPIENTRY *qglUniform3iv)(GLint location, GLsizei count, const GLint *value);
395 void (GLAPIENTRY *qglUniform4iv)(GLint location, GLsizei count, const GLint *value);
396 void (GLAPIENTRY *qglUniformMatrix2fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
397 void (GLAPIENTRY *qglUniformMatrix3fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
398 void (GLAPIENTRY *qglUniformMatrix4fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
399 void (GLAPIENTRY *qglGetShaderiv)(GLuint obj, GLenum pname, GLint *params);
400 void (GLAPIENTRY *qglGetProgramiv)(GLuint obj, GLenum pname, GLint *params);
401 void (GLAPIENTRY *qglGetShaderInfoLog)(GLuint obj, GLsizei maxLength, GLsizei *length, GLchar *infoLog);
402 void (GLAPIENTRY *qglGetProgramInfoLog)(GLuint obj, GLsizei maxLength, GLsizei *length, GLchar *infoLog);
403 void (GLAPIENTRY *qglGetAttachedShaders)(GLuint containerObj, GLsizei maxCount, GLsizei *count, GLuint *obj);
404 GLint (GLAPIENTRY *qglGetUniformLocation)(GLuint programObj, const GLchar *name);
405 void (GLAPIENTRY *qglGetActiveUniform)(GLuint programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
406 void (GLAPIENTRY *qglGetUniformfv)(GLuint programObj, GLint location, GLfloat *params);
407 void (GLAPIENTRY *qglGetUniformiv)(GLuint programObj, GLint location, GLint *params);
408 void (GLAPIENTRY *qglGetShaderSource)(GLuint obj, GLsizei maxLength, GLsizei *length, GLchar *source);
409
410 void (GLAPIENTRY *qglVertexAttrib1f)(GLuint index, GLfloat v0);
411 void (GLAPIENTRY *qglVertexAttrib1s)(GLuint index, GLshort v0);
412 void (GLAPIENTRY *qglVertexAttrib1d)(GLuint index, GLdouble v0);
413 void (GLAPIENTRY *qglVertexAttrib2f)(GLuint index, GLfloat v0, GLfloat v1);
414 void (GLAPIENTRY *qglVertexAttrib2s)(GLuint index, GLshort v0, GLshort v1);
415 void (GLAPIENTRY *qglVertexAttrib2d)(GLuint index, GLdouble v0, GLdouble v1);
416 void (GLAPIENTRY *qglVertexAttrib3f)(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2);
417 void (GLAPIENTRY *qglVertexAttrib3s)(GLuint index, GLshort v0, GLshort v1, GLshort v2);
418 void (GLAPIENTRY *qglVertexAttrib3d)(GLuint index, GLdouble v0, GLdouble v1, GLdouble v2);
419 void (GLAPIENTRY *qglVertexAttrib4f)(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
420 void (GLAPIENTRY *qglVertexAttrib4s)(GLuint index, GLshort v0, GLshort v1, GLshort v2, GLshort v3);
421 void (GLAPIENTRY *qglVertexAttrib4d)(GLuint index, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3);
422 void (GLAPIENTRY *qglVertexAttrib4Nub)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
423 void (GLAPIENTRY *qglVertexAttrib1fv)(GLuint index, const GLfloat *v);
424 void (GLAPIENTRY *qglVertexAttrib1sv)(GLuint index, const GLshort *v);
425 void (GLAPIENTRY *qglVertexAttrib1dv)(GLuint index, const GLdouble *v);
426 void (GLAPIENTRY *qglVertexAttrib2fv)(GLuint index, const GLfloat *v);
427 void (GLAPIENTRY *qglVertexAttrib2sv)(GLuint index, const GLshort *v);
428 void (GLAPIENTRY *qglVertexAttrib2dv)(GLuint index, const GLdouble *v);
429 void (GLAPIENTRY *qglVertexAttrib3fv)(GLuint index, const GLfloat *v);
430 void (GLAPIENTRY *qglVertexAttrib3sv)(GLuint index, const GLshort *v);
431 void (GLAPIENTRY *qglVertexAttrib3dv)(GLuint index, const GLdouble *v);
432 void (GLAPIENTRY *qglVertexAttrib4fv)(GLuint index, const GLfloat *v);
433 void (GLAPIENTRY *qglVertexAttrib4sv)(GLuint index, const GLshort *v);
434 void (GLAPIENTRY *qglVertexAttrib4dv)(GLuint index, const GLdouble *v);
435 void (GLAPIENTRY *qglVertexAttrib4iv)(GLuint index, const GLint *v);
436 void (GLAPIENTRY *qglVertexAttrib4bv)(GLuint index, const GLbyte *v);
437 void (GLAPIENTRY *qglVertexAttrib4ubv)(GLuint index, const GLubyte *v);
438 void (GLAPIENTRY *qglVertexAttrib4usv)(GLuint index, const GLushort *v);
439 void (GLAPIENTRY *qglVertexAttrib4uiv)(GLuint index, const GLuint *v);
440 void (GLAPIENTRY *qglVertexAttrib4Nbv)(GLuint index, const GLbyte *v);
441 void (GLAPIENTRY *qglVertexAttrib4Nsv)(GLuint index, const GLshort *v);
442 void (GLAPIENTRY *qglVertexAttrib4Niv)(GLuint index, const GLint *v);
443 void (GLAPIENTRY *qglVertexAttrib4Nubv)(GLuint index, const GLubyte *v);
444 void (GLAPIENTRY *qglVertexAttrib4Nusv)(GLuint index, const GLushort *v);
445 void (GLAPIENTRY *qglVertexAttrib4Nuiv)(GLuint index, const GLuint *v);
446 void (GLAPIENTRY *qglVertexAttribPointer)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer);
447 void (GLAPIENTRY *qglEnableVertexAttribArray)(GLuint index);
448 void (GLAPIENTRY *qglDisableVertexAttribArray)(GLuint index);
449 void (GLAPIENTRY *qglBindAttribLocation)(GLuint programObj, GLuint index, const GLchar *name);
450 void (GLAPIENTRY *qglBindFragDataLocation)(GLuint programObj, GLuint index, const GLchar *name);
451 void (GLAPIENTRY *qglGetActiveAttrib)(GLuint programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
452 GLint (GLAPIENTRY *qglGetAttribLocation)(GLuint programObj, const GLchar *name);
453 void (GLAPIENTRY *qglGetVertexAttribdv)(GLuint index, GLenum pname, GLdouble *params);
454 void (GLAPIENTRY *qglGetVertexAttribfv)(GLuint index, GLenum pname, GLfloat *params);
455 void (GLAPIENTRY *qglGetVertexAttribiv)(GLuint index, GLenum pname, GLint *params);
456 void (GLAPIENTRY *qglGetVertexAttribPointerv)(GLuint index, GLenum pname, GLvoid **pointer);
457
458 //GL_ARB_vertex_buffer_object
459 void (GLAPIENTRY *qglBindBufferARB) (GLenum target, GLuint buffer);
460 void (GLAPIENTRY *qglDeleteBuffersARB) (GLsizei n, const GLuint *buffers);
461 void (GLAPIENTRY *qglGenBuffersARB) (GLsizei n, GLuint *buffers);
462 GLboolean (GLAPIENTRY *qglIsBufferARB) (GLuint buffer);
463 GLvoid* (GLAPIENTRY *qglMapBufferARB) (GLenum target, GLenum access);
464 GLboolean (GLAPIENTRY *qglUnmapBufferARB) (GLenum target);
465 void (GLAPIENTRY *qglBufferDataARB) (GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage);
466 void (GLAPIENTRY *qglBufferSubDataARB) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data);
467
468 //GL_EXT_framebuffer_object
469 GLboolean (GLAPIENTRY *qglIsRenderbufferEXT)(GLuint renderbuffer);
470 void (GLAPIENTRY *qglBindRenderbufferEXT)(GLenum target, GLuint renderbuffer);
471 void (GLAPIENTRY *qglDeleteRenderbuffersEXT)(GLsizei n, const GLuint *renderbuffers);
472 void (GLAPIENTRY *qglGenRenderbuffersEXT)(GLsizei n, GLuint *renderbuffers);
473 void (GLAPIENTRY *qglRenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
474 void (GLAPIENTRY *qglGetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint *params);
475 GLboolean (GLAPIENTRY *qglIsFramebufferEXT)(GLuint framebuffer);
476 void (GLAPIENTRY *qglBindFramebufferEXT)(GLenum target, GLuint framebuffer);
477 void (GLAPIENTRY *qglDeleteFramebuffersEXT)(GLsizei n, const GLuint *framebuffers);
478 void (GLAPIENTRY *qglGenFramebuffersEXT)(GLsizei n, GLuint *framebuffers);
479 GLenum (GLAPIENTRY *qglCheckFramebufferStatusEXT)(GLenum target);
480 //void (GLAPIENTRY *qglFramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
481 void (GLAPIENTRY *qglFramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
482 void (GLAPIENTRY *qglFramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
483 void (GLAPIENTRY *qglFramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
484 void (GLAPIENTRY *qglGetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint *params);
485 void (GLAPIENTRY *qglGenerateMipmapEXT)(GLenum target);
486
487 void (GLAPIENTRY *qglDrawBuffersARB)(GLsizei n, const GLenum *bufs);
488
489 void (GLAPIENTRY *qglCompressedTexImage3DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data);
490 void (GLAPIENTRY *qglCompressedTexImage2DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border,  GLsizei imageSize, const void *data);
491 //void (GLAPIENTRY *qglCompressedTexImage1DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data);
492 void (GLAPIENTRY *qglCompressedTexSubImage3DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data);
493 void (GLAPIENTRY *qglCompressedTexSubImage2DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data);
494 //void (GLAPIENTRY *qglCompressedTexSubImage1DARB)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data);
495 void (GLAPIENTRY *qglGetCompressedTexImageARB)(GLenum target, GLint lod, void *img);
496
497 void (GLAPIENTRY *qglGenQueriesARB)(GLsizei n, GLuint *ids);
498 void (GLAPIENTRY *qglDeleteQueriesARB)(GLsizei n, const GLuint *ids);
499 GLboolean (GLAPIENTRY *qglIsQueryARB)(GLuint qid);
500 void (GLAPIENTRY *qglBeginQueryARB)(GLenum target, GLuint qid);
501 void (GLAPIENTRY *qglEndQueryARB)(GLenum target);
502 void (GLAPIENTRY *qglGetQueryivARB)(GLenum target, GLenum pname, GLint *params);
503 void (GLAPIENTRY *qglGetQueryObjectivARB)(GLuint qid, GLenum pname, GLint *params);
504 void (GLAPIENTRY *qglGetQueryObjectuivARB)(GLuint qid, GLenum pname, GLuint *params);
505
506 void (GLAPIENTRY *qglSampleCoverageARB)(GLclampf value, GLboolean invert);
507
508 #if _MSC_VER >= 1400
509 #define sscanf sscanf_s
510 #endif
511
512 qboolean GL_CheckExtension(const char *minglver_or_ext, const dllfunction_t *funcs, const char *disableparm, int silent)
513 {
514         int failed = false;
515         const dllfunction_t *func;
516         struct { int major, minor; } min_version, curr_version;
517         char extstr[MAX_INPUTLINE];
518         int ext;
519
520         if(sscanf(minglver_or_ext, "%d.%d", &min_version.major, &min_version.minor) == 2)
521                 ext = 0; // opengl version
522         else if(minglver_or_ext[0] != toupper(minglver_or_ext[0]))
523                 ext = -1; // pseudo name
524         else
525                 ext = 1; // extension name
526
527         if (ext)
528                 Con_DPrintf("checking for %s...  ", minglver_or_ext);
529         else
530                 Con_DPrintf("checking for OpenGL %s core features...  ", minglver_or_ext);
531
532         for (func = funcs;func && func->name;func++)
533                 *func->funcvariable = NULL;
534
535         if (disableparm && (COM_CheckParm(disableparm) || COM_CheckParm("-safe")))
536         {
537                 Con_DPrint("disabled by commandline\n");
538                 return false;
539         }
540
541         if (ext == 1) // opengl extension
542         {
543                 if (!strstr(gl_extensions ? gl_extensions : "", minglver_or_ext) && !strstr(gl_platformextensions ? gl_platformextensions : "", minglver_or_ext))
544                 {
545                         Con_DPrint("not detected\n");
546                         return false;
547                 }
548         }
549
550         if(ext == 0) // opengl version
551         {
552                 if (sscanf(gl_version, "%d.%d", &curr_version.major, &curr_version.minor) < 2)
553                         curr_version.major = curr_version.minor = 1;
554
555                 if (curr_version.major < min_version.major || (curr_version.major == min_version.major && curr_version.minor < min_version.minor))
556                 {
557                         Con_DPrintf("not detected (OpenGL %d.%d loaded)\n", curr_version.major, curr_version.minor);
558                         return false;
559                 }
560         }
561
562         for (func = funcs;func && func->name != NULL;func++)
563         {
564                 // Con_DPrintf("\n    %s...  ", func->name);
565
566                 // functions are cleared before all the extensions are evaluated
567                 if (!(*func->funcvariable = (void *) GL_GetProcAddress(func->name)))
568                 {
569                         if (ext && !silent)
570                                 Con_DPrintf("%s is missing function \"%s\" - broken driver!\n", minglver_or_ext, func->name);
571                         if (!ext)
572                                 Con_Printf("OpenGL %s core features are missing function \"%s\" - broken driver!\n", minglver_or_ext, func->name);
573                         failed = true;
574                 }
575         }
576         // delay the return so it prints all missing functions
577         if (failed)
578                 return false;
579         // VorteX: add to found extension list
580         dpsnprintf(extstr, sizeof(extstr), "%s %s ", gl_info_extensions.string, minglver_or_ext);
581         Cvar_SetQuick(&gl_info_extensions, extstr);
582
583         Con_DPrint("enabled\n");
584         return true;
585 }
586
587 static dllfunction_t opengl110funcs[] =
588 {
589         {"glClearColor", (void **) &qglClearColor},
590         {"glClear", (void **) &qglClear},
591         {"glAlphaFunc", (void **) &qglAlphaFunc},
592         {"glBlendFunc", (void **) &qglBlendFunc},
593         {"glCullFace", (void **) &qglCullFace},
594         {"glDrawBuffer", (void **) &qglDrawBuffer},
595         {"glReadBuffer", (void **) &qglReadBuffer},
596         {"glEnable", (void **) &qglEnable},
597         {"glDisable", (void **) &qglDisable},
598         {"glIsEnabled", (void **) &qglIsEnabled},
599         {"glEnableClientState", (void **) &qglEnableClientState},
600         {"glDisableClientState", (void **) &qglDisableClientState},
601         {"glGetBooleanv", (void **) &qglGetBooleanv},
602         {"glGetDoublev", (void **) &qglGetDoublev},
603         {"glGetFloatv", (void **) &qglGetFloatv},
604         {"glGetIntegerv", (void **) &qglGetIntegerv},
605         {"glGetError", (void **) &qglGetError},
606         {"glGetString", (void **) &qglGetString},
607         {"glFinish", (void **) &qglFinish},
608         {"glFlush", (void **) &qglFlush},
609         {"glClearDepth", (void **) &qglClearDepth},
610         {"glDepthFunc", (void **) &qglDepthFunc},
611         {"glDepthMask", (void **) &qglDepthMask},
612         {"glDepthRange", (void **) &qglDepthRange},
613         {"glDrawElements", (void **) &qglDrawElements},
614         {"glDrawArrays", (void **) &qglDrawArrays},
615         {"glColorMask", (void **) &qglColorMask},
616         {"glVertexPointer", (void **) &qglVertexPointer},
617         {"glNormalPointer", (void **) &qglNormalPointer},
618         {"glColorPointer", (void **) &qglColorPointer},
619         {"glTexCoordPointer", (void **) &qglTexCoordPointer},
620         {"glArrayElement", (void **) &qglArrayElement},
621         {"glColor4ub", (void **) &qglColor4ub},
622         {"glColor4f", (void **) &qglColor4f},
623         {"glTexCoord1f", (void **) &qglTexCoord1f},
624         {"glTexCoord2f", (void **) &qglTexCoord2f},
625         {"glTexCoord3f", (void **) &qglTexCoord3f},
626         {"glTexCoord4f", (void **) &qglTexCoord4f},
627         {"glVertex2f", (void **) &qglVertex2f},
628         {"glVertex3f", (void **) &qglVertex3f},
629         {"glVertex4f", (void **) &qglVertex4f},
630         {"glBegin", (void **) &qglBegin},
631         {"glEnd", (void **) &qglEnd},
632 //[515]: added on 29.07.2005
633         {"glLineWidth", (void**) &qglLineWidth},
634         {"glPointSize", (void**) &qglPointSize},
635 //
636         {"glMatrixMode", (void **) &qglMatrixMode},
637 //      {"glOrtho", (void **) &qglOrtho},
638 //      {"glFrustum", (void **) &qglFrustum},
639         {"glViewport", (void **) &qglViewport},
640 //      {"glPushMatrix", (void **) &qglPushMatrix},
641 //      {"glPopMatrix", (void **) &qglPopMatrix},
642         {"glLoadIdentity", (void **) &qglLoadIdentity},
643 //      {"glLoadMatrixd", (void **) &qglLoadMatrixd},
644         {"glLoadMatrixf", (void **) &qglLoadMatrixf},
645 //      {"glMultMatrixd", (void **) &qglMultMatrixd},
646 //      {"glMultMatrixf", (void **) &qglMultMatrixf},
647 //      {"glRotated", (void **) &qglRotated},
648 //      {"glRotatef", (void **) &qglRotatef},
649 //      {"glScaled", (void **) &qglScaled},
650 //      {"glScalef", (void **) &qglScalef},
651 //      {"glTranslated", (void **) &qglTranslated},
652 //      {"glTranslatef", (void **) &qglTranslatef},
653         {"glReadPixels", (void **) &qglReadPixels},
654         {"glStencilFunc", (void **) &qglStencilFunc},
655         {"glStencilMask", (void **) &qglStencilMask},
656         {"glStencilOp", (void **) &qglStencilOp},
657         {"glClearStencil", (void **) &qglClearStencil},
658         {"glTexEnvf", (void **) &qglTexEnvf},
659         {"glTexEnvfv", (void **) &qglTexEnvfv},
660         {"glTexEnvi", (void **) &qglTexEnvi},
661         {"glTexParameterf", (void **) &qglTexParameterf},
662         {"glTexParameterfv", (void **) &qglTexParameterfv},
663         {"glTexParameteri", (void **) &qglTexParameteri},
664         {"glGetTexImage", (void **) &qglGetTexImage},
665         {"glGetTexParameterfv", (void **) &qglGetTexParameterfv},
666         {"glGetTexParameteriv", (void **) &qglGetTexParameteriv},
667         {"glGetTexLevelParameterfv", (void **) &qglGetTexLevelParameterfv},
668         {"glGetTexLevelParameteriv", (void **) &qglGetTexLevelParameteriv},
669         {"glHint", (void **) &qglHint},
670 //      {"glPixelStoref", (void **) &qglPixelStoref},
671         {"glPixelStorei", (void **) &qglPixelStorei},
672         {"glGenTextures", (void **) &qglGenTextures},
673         {"glDeleteTextures", (void **) &qglDeleteTextures},
674         {"glBindTexture", (void **) &qglBindTexture},
675 //      {"glPrioritizeTextures", (void **) &qglPrioritizeTextures},
676 //      {"glAreTexturesResident", (void **) &qglAreTexturesResident},
677 //      {"glIsTexture", (void **) &qglIsTexture},
678 //      {"glTexImage1D", (void **) &qglTexImage1D},
679         {"glTexImage2D", (void **) &qglTexImage2D},
680 //      {"glTexSubImage1D", (void **) &qglTexSubImage1D},
681         {"glTexSubImage2D", (void **) &qglTexSubImage2D},
682 //      {"glCopyTexImage1D", (void **) &qglCopyTexImage1D},
683         {"glCopyTexImage2D", (void **) &qglCopyTexImage2D},
684 //      {"glCopyTexSubImage1D", (void **) &qglCopyTexSubImage1D},
685         {"glCopyTexSubImage2D", (void **) &qglCopyTexSubImage2D},
686         {"glScissor", (void **) &qglScissor},
687         {"glPolygonOffset", (void **) &qglPolygonOffset},
688         {"glPolygonMode", (void **) &qglPolygonMode},
689         {"glPolygonStipple", (void **) &qglPolygonStipple},
690 //      {"glClipPlane", (void **) &qglClipPlane},
691 //      {"glGetClipPlane", (void **) &qglGetClipPlane},
692         {NULL, NULL}
693 };
694
695 static dllfunction_t drawrangeelementsfuncs[] =
696 {
697         {"glDrawRangeElements", (void **) &qglDrawRangeElements},
698         {NULL, NULL}
699 };
700
701 static dllfunction_t drawrangeelementsextfuncs[] =
702 {
703         {"glDrawRangeElementsEXT", (void **) &qglDrawRangeElementsEXT},
704         {NULL, NULL}
705 };
706
707 static dllfunction_t multitexturefuncs[] =
708 {
709         {"glMultiTexCoord1fARB", (void **) &qglMultiTexCoord1f},
710         {"glMultiTexCoord2fARB", (void **) &qglMultiTexCoord2f},
711         {"glMultiTexCoord3fARB", (void **) &qglMultiTexCoord3f},
712         {"glMultiTexCoord4fARB", (void **) &qglMultiTexCoord4f},
713         {"glActiveTextureARB", (void **) &qglActiveTexture},
714         {"glClientActiveTextureARB", (void **) &qglClientActiveTexture},
715         {NULL, NULL}
716 };
717
718 static dllfunction_t texture3dextfuncs[] =
719 {
720         {"glTexImage3DEXT", (void **) &qglTexImage3D},
721         {"glTexSubImage3DEXT", (void **) &qglTexSubImage3D},
722         {"glCopyTexSubImage3DEXT", (void **) &qglCopyTexSubImage3D},
723         {NULL, NULL}
724 };
725
726 static dllfunction_t atiseparatestencilfuncs[] =
727 {
728         {"glStencilOpSeparateATI", (void **) &qglStencilOpSeparate},
729         {"glStencilFuncSeparateATI", (void **) &qglStencilFuncSeparate},
730         {NULL, NULL}
731 };
732
733 static dllfunction_t gl2separatestencilfuncs[] =
734 {
735         {"glStencilOpSeparate", (void **) &qglStencilOpSeparate},
736         {"glStencilFuncSeparate", (void **) &qglStencilFuncSeparate},
737         {NULL, NULL}
738 };
739
740 static dllfunction_t stenciltwosidefuncs[] =
741 {
742         {"glActiveStencilFaceEXT", (void **) &qglActiveStencilFaceEXT},
743         {NULL, NULL}
744 };
745
746 static dllfunction_t blendequationfuncs[] =
747 {
748         {"glBlendEquationEXT", (void **) &qglBlendEquationEXT},
749         {NULL, NULL}
750 };
751
752 static dllfunction_t gl20shaderfuncs[] =
753 {
754         {"glDeleteShader", (void **) &qglDeleteShader},
755         {"glDeleteProgram", (void **) &qglDeleteProgram},
756 //      {"glGetHandle", (void **) &qglGetHandle},
757         {"glDetachShader", (void **) &qglDetachShader},
758         {"glCreateShader", (void **) &qglCreateShader},
759         {"glShaderSource", (void **) &qglShaderSource},
760         {"glCompileShader", (void **) &qglCompileShader},
761         {"glCreateProgram", (void **) &qglCreateProgram},
762         {"glAttachShader", (void **) &qglAttachShader},
763         {"glLinkProgram", (void **) &qglLinkProgram},
764         {"glUseProgram", (void **) &qglUseProgram},
765         {"glValidateProgram", (void **) &qglValidateProgram},
766         {"glUniform1f", (void **) &qglUniform1f},
767         {"glUniform2f", (void **) &qglUniform2f},
768         {"glUniform3f", (void **) &qglUniform3f},
769         {"glUniform4f", (void **) &qglUniform4f},
770         {"glUniform1i", (void **) &qglUniform1i},
771         {"glUniform2i", (void **) &qglUniform2i},
772         {"glUniform3i", (void **) &qglUniform3i},
773         {"glUniform4i", (void **) &qglUniform4i},
774         {"glUniform1fv", (void **) &qglUniform1fv},
775         {"glUniform2fv", (void **) &qglUniform2fv},
776         {"glUniform3fv", (void **) &qglUniform3fv},
777         {"glUniform4fv", (void **) &qglUniform4fv},
778         {"glUniform1iv", (void **) &qglUniform1iv},
779         {"glUniform2iv", (void **) &qglUniform2iv},
780         {"glUniform3iv", (void **) &qglUniform3iv},
781         {"glUniform4iv", (void **) &qglUniform4iv},
782         {"glUniformMatrix2fv", (void **) &qglUniformMatrix2fv},
783         {"glUniformMatrix3fv", (void **) &qglUniformMatrix3fv},
784         {"glUniformMatrix4fv", (void **) &qglUniformMatrix4fv},
785         {"glGetShaderiv", (void **) &qglGetShaderiv},
786         {"glGetProgramiv", (void **) &qglGetProgramiv},
787         {"glGetShaderInfoLog", (void **) &qglGetShaderInfoLog},
788         {"glGetProgramInfoLog", (void **) &qglGetProgramInfoLog},
789         {"glGetAttachedShaders", (void **) &qglGetAttachedShaders},
790         {"glGetUniformLocation", (void **) &qglGetUniformLocation},
791         {"glGetActiveUniform", (void **) &qglGetActiveUniform},
792         {"glGetUniformfv", (void **) &qglGetUniformfv},
793         {"glGetUniformiv", (void **) &qglGetUniformiv},
794         {"glGetShaderSource", (void **) &qglGetShaderSource},
795         {"glVertexAttrib1f", (void **) &qglVertexAttrib1f},
796         {"glVertexAttrib1s", (void **) &qglVertexAttrib1s},
797         {"glVertexAttrib1d", (void **) &qglVertexAttrib1d},
798         {"glVertexAttrib2f", (void **) &qglVertexAttrib2f},
799         {"glVertexAttrib2s", (void **) &qglVertexAttrib2s},
800         {"glVertexAttrib2d", (void **) &qglVertexAttrib2d},
801         {"glVertexAttrib3f", (void **) &qglVertexAttrib3f},
802         {"glVertexAttrib3s", (void **) &qglVertexAttrib3s},
803         {"glVertexAttrib3d", (void **) &qglVertexAttrib3d},
804         {"glVertexAttrib4f", (void **) &qglVertexAttrib4f},
805         {"glVertexAttrib4s", (void **) &qglVertexAttrib4s},
806         {"glVertexAttrib4d", (void **) &qglVertexAttrib4d},
807         {"glVertexAttrib4Nub", (void **) &qglVertexAttrib4Nub},
808         {"glVertexAttrib1fv", (void **) &qglVertexAttrib1fv},
809         {"glVertexAttrib1sv", (void **) &qglVertexAttrib1sv},
810         {"glVertexAttrib1dv", (void **) &qglVertexAttrib1dv},
811         {"glVertexAttrib2fv", (void **) &qglVertexAttrib1fv},
812         {"glVertexAttrib2sv", (void **) &qglVertexAttrib1sv},
813         {"glVertexAttrib2dv", (void **) &qglVertexAttrib1dv},
814         {"glVertexAttrib3fv", (void **) &qglVertexAttrib1fv},
815         {"glVertexAttrib3sv", (void **) &qglVertexAttrib1sv},
816         {"glVertexAttrib3dv", (void **) &qglVertexAttrib1dv},
817         {"glVertexAttrib4fv", (void **) &qglVertexAttrib1fv},
818         {"glVertexAttrib4sv", (void **) &qglVertexAttrib1sv},
819         {"glVertexAttrib4dv", (void **) &qglVertexAttrib1dv},
820 //      {"glVertexAttrib4iv", (void **) &qglVertexAttrib1iv},
821 //      {"glVertexAttrib4bv", (void **) &qglVertexAttrib1bv},
822 //      {"glVertexAttrib4ubv", (void **) &qglVertexAttrib1ubv},
823 //      {"glVertexAttrib4usv", (void **) &qglVertexAttrib1usv},
824 //      {"glVertexAttrib4uiv", (void **) &qglVertexAttrib1uiv},
825 //      {"glVertexAttrib4Nbv", (void **) &qglVertexAttrib1Nbv},
826 //      {"glVertexAttrib4Nsv", (void **) &qglVertexAttrib1Nsv},
827 //      {"glVertexAttrib4Niv", (void **) &qglVertexAttrib1Niv},
828 //      {"glVertexAttrib4Nubv", (void **) &qglVertexAttrib1Nubv},
829 //      {"glVertexAttrib4Nusv", (void **) &qglVertexAttrib1Nusv},
830 //      {"glVertexAttrib4Nuiv", (void **) &qglVertexAttrib1Nuiv},
831         {"glVertexAttribPointer", (void **) &qglVertexAttribPointer},
832         {"glEnableVertexAttribArray", (void **) &qglEnableVertexAttribArray},
833         {"glDisableVertexAttribArray", (void **) &qglDisableVertexAttribArray},
834         {"glBindAttribLocation", (void **) &qglBindAttribLocation},
835         {"glGetActiveAttrib", (void **) &qglGetActiveAttrib},
836         {"glGetAttribLocation", (void **) &qglGetAttribLocation},
837         {"glGetVertexAttribdv", (void **) &qglGetVertexAttribdv},
838         {"glGetVertexAttribfv", (void **) &qglGetVertexAttribfv},
839         {"glGetVertexAttribiv", (void **) &qglGetVertexAttribiv},
840         {"glGetVertexAttribPointerv", (void **) &qglGetVertexAttribPointerv},
841         {NULL, NULL}
842 };
843
844 static dllfunction_t glsl130funcs[] =
845 {
846         {"glBindFragDataLocation", (void **) &qglBindFragDataLocation},
847         {NULL, NULL}
848 };
849
850 static dllfunction_t vbofuncs[] =
851 {
852         {"glBindBufferARB"    , (void **) &qglBindBufferARB},
853         {"glDeleteBuffersARB" , (void **) &qglDeleteBuffersARB},
854         {"glGenBuffersARB"    , (void **) &qglGenBuffersARB},
855         {"glIsBufferARB"      , (void **) &qglIsBufferARB},
856         {"glMapBufferARB"     , (void **) &qglMapBufferARB},
857         {"glUnmapBufferARB"   , (void **) &qglUnmapBufferARB},
858         {"glBufferDataARB"    , (void **) &qglBufferDataARB},
859         {"glBufferSubDataARB" , (void **) &qglBufferSubDataARB},
860         {NULL, NULL}
861 };
862
863 static dllfunction_t fbofuncs[] =
864 {
865         {"glIsRenderbufferEXT"                      , (void **) &qglIsRenderbufferEXT},
866         {"glBindRenderbufferEXT"                    , (void **) &qglBindRenderbufferEXT},
867         {"glDeleteRenderbuffersEXT"                 , (void **) &qglDeleteRenderbuffersEXT},
868         {"glGenRenderbuffersEXT"                    , (void **) &qglGenRenderbuffersEXT},
869         {"glRenderbufferStorageEXT"                 , (void **) &qglRenderbufferStorageEXT},
870         {"glGetRenderbufferParameterivEXT"          , (void **) &qglGetRenderbufferParameterivEXT},
871         {"glIsFramebufferEXT"                       , (void **) &qglIsFramebufferEXT},
872         {"glBindFramebufferEXT"                     , (void **) &qglBindFramebufferEXT},
873         {"glDeleteFramebuffersEXT"                  , (void **) &qglDeleteFramebuffersEXT},
874         {"glGenFramebuffersEXT"                     , (void **) &qglGenFramebuffersEXT},
875         {"glCheckFramebufferStatusEXT"              , (void **) &qglCheckFramebufferStatusEXT},
876 //      {"glFramebufferTexture1DEXT"                , (void **) &qglFramebufferTexture1DEXT},
877         {"glFramebufferTexture2DEXT"                , (void **) &qglFramebufferTexture2DEXT},
878         {"glFramebufferTexture3DEXT"                , (void **) &qglFramebufferTexture3DEXT},
879         {"glFramebufferRenderbufferEXT"             , (void **) &qglFramebufferRenderbufferEXT},
880         {"glGetFramebufferAttachmentParameterivEXT" , (void **) &qglGetFramebufferAttachmentParameterivEXT},
881         {"glGenerateMipmapEXT"                      , (void **) &qglGenerateMipmapEXT},
882         {NULL, NULL}
883 };
884
885 static dllfunction_t texturecompressionfuncs[] =
886 {
887         {"glCompressedTexImage3DARB",    (void **) &qglCompressedTexImage3DARB},
888         {"glCompressedTexImage2DARB",    (void **) &qglCompressedTexImage2DARB},
889 //      {"glCompressedTexImage1DARB",    (void **) &qglCompressedTexImage1DARB},
890         {"glCompressedTexSubImage3DARB", (void **) &qglCompressedTexSubImage3DARB},
891         {"glCompressedTexSubImage2DARB", (void **) &qglCompressedTexSubImage2DARB},
892 //      {"glCompressedTexSubImage1DARB", (void **) &qglCompressedTexSubImage1DARB},
893         {"glGetCompressedTexImageARB",   (void **) &qglGetCompressedTexImageARB},
894         {NULL, NULL}
895 };
896
897 static dllfunction_t occlusionqueryfuncs[] =
898 {
899         {"glGenQueriesARB",              (void **) &qglGenQueriesARB},
900         {"glDeleteQueriesARB",           (void **) &qglDeleteQueriesARB},
901         {"glIsQueryARB",                 (void **) &qglIsQueryARB},
902         {"glBeginQueryARB",              (void **) &qglBeginQueryARB},
903         {"glEndQueryARB",                (void **) &qglEndQueryARB},
904         {"glGetQueryivARB",              (void **) &qglGetQueryivARB},
905         {"glGetQueryObjectivARB",        (void **) &qglGetQueryObjectivARB},
906         {"glGetQueryObjectuivARB",       (void **) &qglGetQueryObjectuivARB},
907         {NULL, NULL}
908 };
909
910 static dllfunction_t drawbuffersfuncs[] =
911 {
912         {"glDrawBuffersARB",             (void **) &qglDrawBuffersARB},
913         {NULL, NULL}
914 };
915
916 static dllfunction_t multisamplefuncs[] =
917 {
918         {"glSampleCoverageARB",          (void **) &qglSampleCoverageARB},
919         {NULL, NULL}
920 };
921
922 void VID_ClearExtensions(void)
923 {
924         // VorteX: reset extensions info cvar, it got filled by GL_CheckExtension
925         Cvar_SetQuick(&gl_info_extensions, "");
926
927         // clear the extension flags
928         memset(&vid.support, 0, sizeof(vid.support));
929         vid.renderpath = RENDERPATH_GL11;
930         vid.sRGBcapable2D = false;
931         vid.sRGBcapable3D = false;
932         vid.useinterleavedarrays = false;
933         vid.forcevbo = false;
934         vid.maxtexturesize_2d = 0;
935         vid.maxtexturesize_3d = 0;
936         vid.maxtexturesize_cubemap = 0;
937         vid.texunits = 1;
938         vid.teximageunits = 1;
939         vid.texarrayunits = 1;
940         vid.max_anisotropy = 1;
941         vid.maxdrawbuffers = 1;
942
943         // this is a complete list of all functions that are directly checked in the renderer
944         qglDrawRangeElements = NULL;
945         qglDrawBuffer = NULL;
946         qglPolygonStipple = NULL;
947         qglFlush = NULL;
948         qglActiveTexture = NULL;
949         qglGetCompressedTexImageARB = NULL;
950         qglFramebufferTexture2DEXT = NULL;
951         qglDrawBuffersARB = NULL;
952 }
953
954 void VID_CheckExtensions(void)
955 {
956         if (!GL_CheckExtension("glbase", opengl110funcs, NULL, false))
957                 Sys_Error("OpenGL 1.1.0 functions not found");
958         vid.support.gl20shaders = GL_CheckExtension("GL_ARB_fragment_shader", gl20shaderfuncs, "-noshaders", true);
959
960         CHECKGLERROR
961
962         Con_DPrint("Checking OpenGL extensions...\n");
963
964         if (vid.support.gl20shaders)
965         {
966                 // this one is purely optional, needed for GLSL 1.3 support (#version 130), so we don't even check the return value of GL_CheckExtension
967                 vid.support.gl20shaders130 = GL_CheckExtension("glshaders130", glsl130funcs, "-noglsl130", true);
968                 if(vid.support.gl20shaders130)
969                 {
970                         char *s = (char *) qglGetString(GL_SHADING_LANGUAGE_VERSION);
971                         if(!s || atof(s) < 1.30 - 0.00001)
972                                 vid.support.gl20shaders130 = 0;
973                 }
974                 if(vid.support.gl20shaders130)
975                         Con_DPrintf("Using GLSL 1.30\n");
976                 else
977                         Con_DPrintf("Using GLSL 1.00\n");
978         }
979
980         // GL drivers generally prefer GL_BGRA
981         vid.forcetextype = GL_BGRA;
982
983         vid.support.amd_texture_texture4 = GL_CheckExtension("GL_AMD_texture_texture4", NULL, "-notexture4", false);
984         vid.support.arb_depth_texture = GL_CheckExtension("GL_ARB_depth_texture", NULL, "-nodepthtexture", false);
985         vid.support.arb_draw_buffers = GL_CheckExtension("GL_ARB_draw_buffers", drawbuffersfuncs, "-nodrawbuffers", false);
986         vid.support.arb_multitexture = GL_CheckExtension("GL_ARB_multitexture", multitexturefuncs, "-nomtex", false);
987         vid.support.arb_occlusion_query = GL_CheckExtension("GL_ARB_occlusion_query", occlusionqueryfuncs, "-noocclusionquery", false);
988         vid.support.arb_shadow = GL_CheckExtension("GL_ARB_shadow", NULL, "-noshadow", false);
989         vid.support.arb_texture_compression = GL_CheckExtension("GL_ARB_texture_compression", texturecompressionfuncs, "-notexturecompression", false);
990         vid.support.arb_texture_cube_map = GL_CheckExtension("GL_ARB_texture_cube_map", NULL, "-nocubemap", false);
991         vid.support.arb_texture_env_combine = GL_CheckExtension("GL_ARB_texture_env_combine", NULL, "-nocombine", false) || GL_CheckExtension("GL_EXT_texture_env_combine", NULL, "-nocombine", false);
992         vid.support.arb_texture_gather = GL_CheckExtension("GL_ARB_texture_gather", NULL, "-notexturegather", false);
993 #ifndef __APPLE__
994         // LordHavoc: too many bugs on OSX!
995         vid.support.arb_texture_non_power_of_two = GL_CheckExtension("GL_ARB_texture_non_power_of_two", NULL, "-notexturenonpoweroftwo", false);
996 #endif
997         vid.support.arb_vertex_buffer_object = GL_CheckExtension("GL_ARB_vertex_buffer_object", vbofuncs, "-novbo", false);
998         vid.support.ati_separate_stencil = GL_CheckExtension("separatestencil", gl2separatestencilfuncs, "-noseparatestencil", true) || GL_CheckExtension("GL_ATI_separate_stencil", atiseparatestencilfuncs, "-noseparatestencil", false);
999         vid.support.ext_blend_minmax = GL_CheckExtension("GL_EXT_blend_minmax", blendequationfuncs, "-noblendminmax", false);
1000         vid.support.ext_blend_subtract = GL_CheckExtension("GL_EXT_blend_subtract", blendequationfuncs, "-noblendsubtract", false);
1001         vid.support.ext_draw_range_elements = GL_CheckExtension("drawrangeelements", drawrangeelementsfuncs, "-nodrawrangeelements", true) || GL_CheckExtension("GL_EXT_draw_range_elements", drawrangeelementsextfuncs, "-nodrawrangeelements", false);
1002         vid.support.ext_framebuffer_object = GL_CheckExtension("GL_EXT_framebuffer_object", fbofuncs, "-nofbo", false);
1003         vid.support.ext_stencil_two_side = GL_CheckExtension("GL_EXT_stencil_two_side", stenciltwosidefuncs, "-nostenciltwoside", false);
1004         vid.support.ext_texture_3d = GL_CheckExtension("GL_EXT_texture3D", texture3dextfuncs, "-notexture3d", false);
1005         vid.support.ext_texture_compression_s3tc = GL_CheckExtension("GL_EXT_texture_compression_s3tc", NULL, "-nos3tc", false);
1006         vid.support.ext_texture_edge_clamp = GL_CheckExtension("GL_EXT_texture_edge_clamp", NULL, "-noedgeclamp", false) || GL_CheckExtension("GL_SGIS_texture_edge_clamp", NULL, "-noedgeclamp", false);
1007         vid.support.ext_texture_filter_anisotropic = GL_CheckExtension("GL_EXT_texture_filter_anisotropic", NULL, "-noanisotropy", false);
1008         vid.support.ext_texture_srgb = GL_CheckExtension("GL_EXT_texture_sRGB", NULL, "-nosrgb", false);
1009         vid.support.arb_multisample = GL_CheckExtension("GL_ARB_multisample", multisamplefuncs, "-nomultisample", false);
1010
1011 // COMMANDLINEOPTION: GL: -noshaders disables use of OpenGL 2.0 shaders (which allow pixel shader effects, can improve per pixel lighting performance and capabilities)
1012 // COMMANDLINEOPTION: GL: -noanisotropy disables GL_EXT_texture_filter_anisotropic (allows higher quality texturing)
1013 // COMMANDLINEOPTION: GL: -noblendminmax disables GL_EXT_blend_minmax
1014 // COMMANDLINEOPTION: GL: -noblendsubtract disables GL_EXT_blend_subtract
1015 // COMMANDLINEOPTION: GL: -nocombine disables GL_ARB_texture_env_combine or GL_EXT_texture_env_combine (required for bumpmapping and faster map rendering)
1016 // COMMANDLINEOPTION: GL: -nocubemap disables GL_ARB_texture_cube_map (required for bumpmapping)
1017 // COMMANDLINEOPTION: GL: -nodepthtexture disables use of GL_ARB_depth_texture (required for shadowmapping)
1018 // COMMANDLINEOPTION: GL: -nodrawbuffers disables use of GL_ARB_draw_buffers (required for r_shadow_deferredprepass)
1019 // COMMANDLINEOPTION: GL: -nodrawrangeelements disables GL_EXT_draw_range_elements (renders faster)
1020 // COMMANDLINEOPTION: GL: -noedgeclamp disables GL_EXT_texture_edge_clamp or GL_SGIS_texture_edge_clamp (recommended, some cards do not support the other texture clamp method)
1021 // COMMANDLINEOPTION: GL: -nofbo disables GL_EXT_framebuffer_object (which accelerates rendering), only used if GL_ARB_fragment_shader is also available
1022 // COMMANDLINEOPTION: GL: -nomtex disables GL_ARB_multitexture (required for faster map rendering)
1023 // COMMANDLINEOPTION: GL: -noocclusionquery disables GL_ARB_occlusion_query (which allows coronas to fade according to visibility, and potentially used for rendering optimizations)
1024 // COMMANDLINEOPTION: GL: -nos3tc disables GL_EXT_texture_compression_s3tc (which allows use of .dds texture caching)
1025 // COMMANDLINEOPTION: GL: -noseparatestencil disables use of OpenGL2.0 glStencilOpSeparate and GL_ATI_separate_stencil extensions (which accelerate shadow rendering)
1026 // COMMANDLINEOPTION: GL: -noshadow disables use of GL_ARB_shadow (required for hardware shadowmap filtering)
1027 // COMMANDLINEOPTION: GL: -nostenciltwoside disables GL_EXT_stencil_two_side (which accelerate shadow rendering)
1028 // COMMANDLINEOPTION: GL: -notexture3d disables GL_EXT_texture3D (required for spherical lights, otherwise they render as a column)
1029 // COMMANDLINEOPTION: GL: -notexture4 disables GL_AMD_texture_texture4 (which provides fetch4 sampling)
1030 // COMMANDLINEOPTION: GL: -notexturecompression disables GL_ARB_texture_compression (which saves video memory if it is supported, but can also degrade image quality, see gl_texturecompression cvar documentation for more information)
1031 // COMMANDLINEOPTION: GL: -notexturegather disables GL_ARB_texture_gather (which provides fetch4 sampling)
1032 // COMMANDLINEOPTION: GL: -notexturenonpoweroftwo disables GL_ARB_texture_non_power_of_two (which saves video memory if it is supported, but crashes on some buggy drivers)
1033 // COMMANDLINEOPTION: GL: -novbo disables GL_ARB_vertex_buffer_object (which accelerates rendering)
1034 // COMMANDLINEOPTION: GL: -nosrgb disables GL_EXT_texture_sRGB (which is used for higher quality non-linear texture gamma)
1035 // COMMANDLINEOPTION: GL: -nomultisample disables GL_ARB_multisample
1036
1037         if (vid.support.arb_draw_buffers)
1038                 qglGetIntegerv(GL_MAX_DRAW_BUFFERS_ARB, (GLint*)&vid.maxdrawbuffers);
1039
1040         // disable non-power-of-two textures on Radeon X1600 and other cards that do not accelerate it with some filtering modes / repeat modes that we use
1041         // we detect these cards by checking if the hardware supports vertex texture fetch (Geforce6 does, Radeon X1600 does not, all GL3-class hardware does)
1042         if(vid.support.arb_texture_non_power_of_two && vid.support.gl20shaders)
1043         {
1044                 int val = 0;
1045                 qglGetIntegerv(GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &val);CHECKGLERROR
1046                 if (val < 1)
1047                         vid.support.arb_texture_non_power_of_two = false;
1048         }
1049
1050         // we don't care if it's an extension or not, they are identical functions, so keep it simple in the rendering code
1051         if (qglDrawRangeElements == NULL)
1052                 qglDrawRangeElements = qglDrawRangeElementsEXT;
1053
1054         qglGetIntegerv(GL_MAX_TEXTURE_SIZE, (GLint*)&vid.maxtexturesize_2d);
1055         if (vid.support.ext_texture_filter_anisotropic)
1056                 qglGetIntegerv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, (GLint*)&vid.max_anisotropy);
1057         if (vid.support.arb_texture_cube_map)
1058                 qglGetIntegerv(GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB, (GLint*)&vid.maxtexturesize_cubemap);
1059         if (vid.support.ext_texture_3d)
1060                 qglGetIntegerv(GL_MAX_3D_TEXTURE_SIZE, (GLint*)&vid.maxtexturesize_3d);
1061
1062         // verify that 3d textures are really supported
1063         if (vid.support.ext_texture_3d && vid.maxtexturesize_3d < 32)
1064         {
1065                 vid.support.ext_texture_3d = false;
1066                 Con_Printf("GL_EXT_texture3D reported bogus GL_MAX_3D_TEXTURE_SIZE, disabled\n");
1067         }
1068
1069         vid.texunits = vid.teximageunits = vid.texarrayunits = 1;
1070         if (vid.support.arb_multitexture)
1071                 qglGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, (GLint*)&vid.texunits);
1072         if (vid_gl20.integer && vid.support.gl20shaders)
1073         {
1074                 qglGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, (GLint*)&vid.texunits);
1075                 qglGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, (int *)&vid.teximageunits);CHECKGLERROR
1076                 qglGetIntegerv(GL_MAX_TEXTURE_COORDS, (int *)&vid.texarrayunits);CHECKGLERROR
1077                 vid.texunits = bound(4, vid.texunits, MAX_TEXTUREUNITS);
1078                 vid.teximageunits = bound(16, vid.teximageunits, MAX_TEXTUREUNITS);
1079                 vid.texarrayunits = bound(8, vid.texarrayunits, MAX_TEXTUREUNITS);
1080                 Con_DPrintf("Using GL2.0 rendering path - %i texture matrix, %i texture images, %i texcoords%s\n", vid.texunits, vid.teximageunits, vid.texarrayunits, vid.support.ext_framebuffer_object ? ", shadowmapping supported" : "");
1081                 vid.renderpath = RENDERPATH_GL20;
1082                 vid.sRGBcapable2D = false;
1083                 vid.sRGBcapable3D = true;
1084                 vid.useinterleavedarrays = false;
1085         }
1086         else if (vid.support.arb_texture_env_combine && vid.texunits >= 2 && vid_gl13.integer)
1087         {
1088                 qglGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, (GLint*)&vid.texunits);
1089                 vid.texunits = bound(1, vid.texunits, MAX_TEXTUREUNITS);
1090                 vid.teximageunits = vid.texunits;
1091                 vid.texarrayunits = vid.texunits;
1092                 Con_DPrintf("Using GL1.3 rendering path - %i texture units, single pass rendering\n", vid.texunits);
1093                 vid.renderpath = RENDERPATH_GL13;
1094                 vid.sRGBcapable2D = false;
1095                 vid.sRGBcapable3D = false;
1096                 vid.useinterleavedarrays = false;
1097         }
1098         else
1099         {
1100                 vid.texunits = bound(1, vid.texunits, MAX_TEXTUREUNITS);
1101                 vid.teximageunits = vid.texunits;
1102                 vid.texarrayunits = vid.texunits;
1103                 Con_DPrintf("Using GL1.1 rendering path - %i texture units, two pass rendering\n", vid.texunits);
1104                 vid.renderpath = RENDERPATH_GL11;
1105                 vid.sRGBcapable2D = false;
1106                 vid.sRGBcapable3D = false;
1107                 vid.useinterleavedarrays = false;
1108         }
1109
1110         // VorteX: set other info (maybe place them in VID_InitMode?)
1111         Cvar_SetQuick(&gl_info_vendor, gl_vendor);
1112         Cvar_SetQuick(&gl_info_renderer, gl_renderer);
1113         Cvar_SetQuick(&gl_info_version, gl_version);
1114         Cvar_SetQuick(&gl_info_platform, gl_platform ? gl_platform : "");
1115         Cvar_SetQuick(&gl_info_driver, gl_driver);
1116 }
1117
1118 float VID_JoyState_GetAxis(const vid_joystate_t *joystate, int axis, float sensitivity, float deadzone)
1119 {
1120         float value;
1121         value = (axis >= 0 && axis < MAXJOYAXIS) ? joystate->axis[axis] : 0.0f;
1122         value = value > deadzone ? (value - deadzone) : (value < -deadzone ? (value + deadzone) : 0.0f);
1123         value *= deadzone > 0 ? (1.0f / (1.0f - deadzone)) : 1.0f;
1124         value = bound(-1, value, 1);
1125         return value * sensitivity;
1126 }
1127
1128 qboolean VID_JoyBlockEmulatedKeys(int keycode)
1129 {
1130         int j;
1131         vid_joystate_t joystate;
1132
1133         if (!joy_axiskeyevents.integer)
1134                 return false;
1135         if (vid_joystate.is360)
1136                 return false;
1137         if (keycode != K_UPARROW && keycode != K_DOWNARROW && keycode != K_RIGHTARROW && keycode != K_LEFTARROW)
1138                 return false;
1139
1140         // block system-generated key events for arrow keys if we're emulating the arrow keys ourselves
1141         VID_BuildJoyState(&joystate);
1142         for (j = 32;j < 36;j++)
1143                 if (vid_joystate.button[j] || joystate.button[j])
1144                         return true;
1145
1146         return false;
1147 }
1148
1149 void VID_Shared_BuildJoyState_Begin(vid_joystate_t *joystate)
1150 {
1151 #ifdef WIN32
1152         xinput_state_t xinputstate;
1153 #endif
1154         memset(joystate, 0, sizeof(*joystate));
1155 #ifdef WIN32
1156         if (vid_xinputindex >= 0 && qXInputGetState && qXInputGetState(vid_xinputindex, &xinputstate) == S_OK)
1157         {
1158                 joystate->is360 = true;
1159                 joystate->button[ 0] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_UP) != 0;
1160                 joystate->button[ 1] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_DOWN) != 0;
1161                 joystate->button[ 2] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_LEFT) != 0;
1162                 joystate->button[ 3] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_RIGHT) != 0;
1163                 joystate->button[ 4] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_START) != 0;
1164                 joystate->button[ 5] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_BACK) != 0;
1165                 joystate->button[ 6] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_THUMB) != 0;
1166                 joystate->button[ 7] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_THUMB) != 0;
1167                 joystate->button[ 8] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_SHOULDER) != 0;
1168                 joystate->button[ 9] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_SHOULDER) != 0;
1169                 joystate->button[10] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_A) != 0;
1170                 joystate->button[11] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_B) != 0;
1171                 joystate->button[12] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_X) != 0;
1172                 joystate->button[13] = (xinputstate.Gamepad.wButtons & XINPUT_GAMEPAD_Y) != 0;
1173                 joystate->button[14] = xinputstate.Gamepad.bLeftTrigger >= XINPUT_GAMEPAD_TRIGGER_THRESHOLD;
1174                 joystate->button[15] = xinputstate.Gamepad.bRightTrigger >= XINPUT_GAMEPAD_TRIGGER_THRESHOLD;
1175                 joystate->button[16] = xinputstate.Gamepad.sThumbLY < -16384;
1176                 joystate->button[17] = xinputstate.Gamepad.sThumbLY >  16384;
1177                 joystate->button[18] = xinputstate.Gamepad.sThumbLX < -16384;
1178                 joystate->button[19] = xinputstate.Gamepad.sThumbLX >  16384;
1179                 joystate->button[20] = xinputstate.Gamepad.sThumbRY < -16384;
1180                 joystate->button[21] = xinputstate.Gamepad.sThumbRY >  16384;
1181                 joystate->button[22] = xinputstate.Gamepad.sThumbRX < -16384;
1182                 joystate->button[23] = xinputstate.Gamepad.sThumbRX >  16384;
1183                 joystate->axis[ 4] = xinputstate.Gamepad.bLeftTrigger * (1.0f / 255.0f);
1184                 joystate->axis[ 5] = xinputstate.Gamepad.bRightTrigger * (1.0f / 255.0f);
1185                 joystate->axis[ 0] = xinputstate.Gamepad.sThumbLX * (1.0f / 32767.0f);
1186                 joystate->axis[ 1] = xinputstate.Gamepad.sThumbLY * (1.0f / 32767.0f);
1187                 joystate->axis[ 2] = xinputstate.Gamepad.sThumbRX * (1.0f / 32767.0f);
1188                 joystate->axis[ 3] = xinputstate.Gamepad.sThumbRY * (1.0f / 32767.0f);
1189         }
1190 #endif
1191 }
1192
1193 void VID_Shared_BuildJoyState_Finish(vid_joystate_t *joystate)
1194 {
1195         float f, r;
1196         if (!joy_axiskeyevents.integer || joystate->is360)
1197                 return;
1198         // emulate key events for thumbstick
1199         f = VID_JoyState_GetAxis(joystate, joy_axisforward.integer, 1, joy_axiskeyevents_deadzone.value) * joy_sensitivityforward.value;
1200         r = VID_JoyState_GetAxis(joystate, joy_axisside.integer   , 1, joy_axiskeyevents_deadzone.value) * joy_sensitivityside.value;
1201 #if MAXJOYBUTTON != 36
1202 #error this code must be updated if MAXJOYBUTTON changes!
1203 #endif
1204         joystate->button[32] = f > 0.0f;
1205         joystate->button[33] = f < 0.0f;
1206         joystate->button[34] = r > 0.0f;
1207         joystate->button[35] = r < 0.0f;
1208
1209 }
1210
1211 void VID_KeyEventForButton(qboolean oldbutton, qboolean newbutton, int key, double *timer)
1212 {
1213         if (oldbutton)
1214         {
1215                 if (newbutton)
1216                 {
1217                         if (realtime >= *timer)
1218                         {
1219                                 Key_Event(key, 0, true);
1220                                 *timer = realtime + 0.1;
1221                         }
1222                 }
1223                 else
1224                 {
1225                         Key_Event(key, 0, false);
1226                         *timer = 0;
1227                 }
1228         }
1229         else
1230         {
1231                 if (newbutton)
1232                 {
1233                         Key_Event(key, 0, true);
1234                         *timer = realtime + 0.5;
1235                 }
1236         }
1237 }
1238
1239 #if MAXJOYBUTTON != 36
1240 #error this code must be updated if MAXJOYBUTTON changes!
1241 #endif
1242 static int joybuttonkey[MAXJOYBUTTON] =
1243 {
1244         K_JOY1, K_JOY2, K_JOY3, K_JOY4, K_JOY5, K_JOY6, K_JOY7, K_JOY8, K_JOY9, K_JOY10, K_JOY11, K_JOY12,      K_JOY13, K_JOY14, K_JOY15, K_JOY16,
1245         K_AUX1, K_AUX2, K_AUX3, K_AUX4, K_AUX5, K_AUX6, K_AUX7, K_AUX8, K_AUX9, K_AUX10, K_AUX11, K_AUX12,      K_AUX13, K_AUX14, K_AUX15, K_AUX16,
1246         K_UPARROW, K_DOWNARROW, K_RIGHTARROW, K_LEFTARROW
1247 };
1248
1249 static int joybuttonkey360[] =
1250 {
1251         K_X360_DPAD_UP,
1252         K_X360_DPAD_DOWN,
1253         K_X360_DPAD_LEFT,
1254         K_X360_DPAD_RIGHT,
1255         K_X360_START,
1256         K_X360_BACK,
1257         K_X360_LEFT_THUMB,
1258         K_X360_RIGHT_THUMB,
1259         K_X360_LEFT_SHOULDER,
1260         K_X360_RIGHT_SHOULDER,
1261         K_X360_A,
1262         K_X360_B,
1263         K_X360_X,
1264         K_X360_Y,
1265         K_X360_LEFT_TRIGGER,
1266         K_X360_RIGHT_TRIGGER,
1267         K_X360_LEFT_THUMB_DOWN,
1268         K_X360_LEFT_THUMB_UP,
1269         K_X360_LEFT_THUMB_LEFT,
1270         K_X360_LEFT_THUMB_RIGHT,
1271         K_X360_RIGHT_THUMB_DOWN,
1272         K_X360_RIGHT_THUMB_UP,
1273         K_X360_RIGHT_THUMB_LEFT,
1274         K_X360_RIGHT_THUMB_RIGHT,
1275 };
1276
1277 static int joybuttonkey360menu[] =
1278 {
1279         K_UPARROW,
1280         K_DOWNARROW,
1281         K_LEFTARROW,
1282         K_RIGHTARROW,
1283         K_PAUSE,
1284         K_ESCAPE,
1285         0,
1286         0,
1287         0,
1288         0,
1289         K_ENTER,
1290         K_ESCAPE,
1291         0,
1292         0,
1293         0,
1294         0,
1295         K_DOWNARROW,
1296         K_UPARROW,
1297         K_LEFTARROW,
1298         K_RIGHTARROW,
1299         0,
1300         0,
1301         0,
1302         0,
1303 };
1304
1305 double vid_joybuttontimer[MAXJOYBUTTON];
1306 void VID_ApplyJoyState(vid_joystate_t *joystate)
1307 {
1308         int j;
1309         if (joystate->is360)
1310         {
1311 #if 0
1312                 // keystrokes (chatpad)
1313                 // DOES NOT WORK - no driver support in xinput1_3.dll :(
1314                 xinput_keystroke_t keystroke;
1315                 while (qXInputGetKeystroke && qXInputGetKeystroke(XUSER_INDEX_ANY, 0, &keystroke) == S_OK)
1316                         Con_Printf("XInput KeyStroke: VirtualKey %i, Unicode %i, Flags %x, UserIndex %i, HidCode %i\n", keystroke.VirtualKey, keystroke.Unicode, keystroke.Flags, keystroke.UserIndex, keystroke.HidCode);
1317 #endif
1318
1319                 // emit key events for buttons
1320                 for (j = 0;j < (int)(sizeof(joybuttonkey360)/sizeof(joybuttonkey360[0]));j++)
1321                         VID_KeyEventForButton(vid_joystate.button[j] != 0, joystate->button[j] != 0, key_dest == key_menu ? joybuttonkey360menu[j] : joybuttonkey360[j], &vid_joybuttontimer[j]);
1322
1323                 // axes
1324                 cl.cmd.forwardmove += VID_JoyState_GetAxis(joystate, joy_x360_axisforward.integer, joy_x360_sensitivityforward.value, joy_x360_deadzoneforward.value) * cl_forwardspeed.value;
1325                 cl.cmd.sidemove    += VID_JoyState_GetAxis(joystate, joy_x360_axisside.integer, joy_x360_sensitivityside.value, joy_x360_deadzoneside.value) * cl_sidespeed.value;
1326                 cl.cmd.upmove      += VID_JoyState_GetAxis(joystate, joy_x360_axisup.integer, joy_x360_sensitivityup.value, joy_x360_deadzoneup.value) * cl_upspeed.value;
1327                 cl.viewangles[0]   += VID_JoyState_GetAxis(joystate, joy_x360_axispitch.integer, joy_x360_sensitivitypitch.value, joy_x360_deadzonepitch.value) * cl.realframetime * cl_pitchspeed.value;
1328                 cl.viewangles[1]   += VID_JoyState_GetAxis(joystate, joy_x360_axisyaw.integer, joy_x360_sensitivityyaw.value, joy_x360_deadzoneyaw.value) * cl.realframetime * cl_yawspeed.value;
1329                 //cl.viewangles[2]   += VID_JoyState_GetAxis(joystate, joy_x360_axisroll.integer, joy_x360_sensitivityroll.value, joy_x360_deadzoneroll.value) * cl.realframetime * cl_rollspeed.value;
1330         }
1331         else
1332         {
1333                 // emit key events for buttons
1334                 for (j = 0;j < MAXJOYBUTTON;j++)
1335                         VID_KeyEventForButton(vid_joystate.button[j] != 0, joystate->button[j] != 0, joybuttonkey[j], &vid_joybuttontimer[j]);
1336
1337                 // axes
1338                 cl.cmd.forwardmove += VID_JoyState_GetAxis(joystate, joy_axisforward.integer, joy_sensitivityforward.value, joy_deadzoneforward.value) * cl_forwardspeed.value;
1339                 cl.cmd.sidemove    += VID_JoyState_GetAxis(joystate, joy_axisside.integer, joy_sensitivityside.value, joy_deadzoneside.value) * cl_sidespeed.value;
1340                 cl.cmd.upmove      += VID_JoyState_GetAxis(joystate, joy_axisup.integer, joy_sensitivityup.value, joy_deadzoneup.value) * cl_upspeed.value;
1341                 cl.viewangles[0]   += VID_JoyState_GetAxis(joystate, joy_axispitch.integer, joy_sensitivitypitch.value, joy_deadzonepitch.value) * cl.realframetime * cl_pitchspeed.value;
1342                 cl.viewangles[1]   += VID_JoyState_GetAxis(joystate, joy_axisyaw.integer, joy_sensitivityyaw.value, joy_deadzoneyaw.value) * cl.realframetime * cl_yawspeed.value;
1343                 //cl.viewangles[2]   += VID_JoyState_GetAxis(joystate, joy_axisroll.integer, joy_sensitivityroll.value, joy_deadzoneroll.value) * cl.realframetime * cl_rollspeed.value;
1344         }
1345
1346         vid_joystate = *joystate;
1347 }
1348
1349 int VID_Shared_SetJoystick(int index)
1350 {
1351 #ifdef WIN32
1352         int i;
1353         int xinputcount = 0;
1354         int xinputindex = -1;
1355         int xinputavailable = 0;
1356         xinput_state_t state;
1357         // detect available XInput controllers
1358         for (i = 0;i < 4;i++)
1359         {
1360                 if (qXInputGetState && qXInputGetState(i, &state) == S_OK)
1361                 {
1362                         xinputavailable |= 1<<i;
1363                         if (index == xinputcount)
1364                                 xinputindex = i;
1365                         xinputcount++;
1366                 }
1367         }
1368         if (joy_xinputavailable.integer != xinputavailable)
1369                 Cvar_SetValueQuick(&joy_xinputavailable, xinputavailable);
1370         if (vid_xinputindex != xinputindex)
1371         {
1372                 vid_xinputindex = xinputindex;
1373                 if (xinputindex >= 0)
1374                         Con_Printf("Joystick %i opened (XInput Device %i)\n", index, xinputindex);
1375         }
1376         return xinputcount;
1377 #else
1378         return 0;
1379 #endif
1380 }
1381
1382
1383 void Force_CenterView_f (void)
1384 {
1385         cl.viewangles[PITCH] = 0;
1386 }
1387
1388 static int gamma_forcenextframe = false;
1389 static float cachegamma, cachebrightness, cachecontrast, cacheblack[3], cachegrey[3], cachewhite[3], cachecontrastboost;
1390 static int cachecolorenable, cachehwgamma;
1391
1392 unsigned int vid_gammatables_serial = 0; // so other subsystems can poll if gamma parameters have changed
1393 qboolean vid_gammatables_trivial = true;
1394 void VID_BuildGammaTables(unsigned short *ramps, int rampsize)
1395 {
1396         float srgbmul = (vid.sRGB2D || vid.sRGB3D) ? 2.2f : 1.0f;
1397         if (cachecolorenable)
1398         {
1399                 BuildGammaTable16(1.0f, invpow(0.5, 1 - cachegrey[0]) * srgbmul, cachewhite[0], cacheblack[0], cachecontrastboost, ramps, rampsize);
1400                 BuildGammaTable16(1.0f, invpow(0.5, 1 - cachegrey[1]) * srgbmul, cachewhite[1], cacheblack[1], cachecontrastboost, ramps + rampsize, rampsize);
1401                 BuildGammaTable16(1.0f, invpow(0.5, 1 - cachegrey[2]) * srgbmul, cachewhite[2], cacheblack[2], cachecontrastboost, ramps + rampsize*2, rampsize);
1402         }
1403         else
1404         {
1405                 BuildGammaTable16(1.0f, cachegamma * srgbmul, cachecontrast, cachebrightness, cachecontrastboost, ramps, rampsize);
1406                 BuildGammaTable16(1.0f, cachegamma * srgbmul, cachecontrast, cachebrightness, cachecontrastboost, ramps + rampsize, rampsize);
1407                 BuildGammaTable16(1.0f, cachegamma * srgbmul, cachecontrast, cachebrightness, cachecontrastboost, ramps + rampsize*2, rampsize);
1408         }
1409
1410         // LordHavoc: this code came from Ben Winslow and Zinx Verituse, I have
1411         // immensely butchered it to work with variable framerates and fit in with
1412         // the rest of darkplaces.
1413         if (v_psycho.integer)
1414         {
1415                 int x, y;
1416                 float t;
1417                 static float n[3], nd[3], nt[3];
1418                 static int init = true;
1419                 unsigned short *ramp;
1420                 gamma_forcenextframe = true;
1421                 if (init)
1422                 {
1423                         init = false;
1424                         for (x = 0;x < 3;x++)
1425                         {
1426                                 n[x] = lhrandom(0, 1);
1427                                 nd[x] = (rand()&1)?-0.25:0.25;
1428                                 nt[x] = lhrandom(1, 8.2);
1429                         }
1430                 }
1431
1432                 for (x = 0;x < 3;x++)
1433                 {
1434                         nt[x] -= cl.realframetime;
1435                         if (nt[x] < 0)
1436                         {
1437                                 nd[x] = -nd[x];
1438                                 nt[x] += lhrandom(1, 8.2);
1439                         }
1440                         n[x] += nd[x] * cl.realframetime;
1441                         n[x] -= floor(n[x]);
1442                 }
1443
1444                 for (x = 0, ramp = ramps;x < 3;x++)
1445                         for (y = 0, t = n[x] - 0.75f;y < rampsize;y++, t += 0.75f * (2.0f / rampsize))
1446                                 *ramp++ = (unsigned short)(cos(t*(M_PI*2.0)) * 32767.0f + 32767.0f);
1447         }
1448 }
1449
1450 void VID_UpdateGamma(qboolean force, int rampsize)
1451 {
1452         cvar_t *c;
1453         float f;
1454         int wantgamma;
1455         qboolean gamma_changed = false;
1456
1457         // LordHavoc: don't mess with gamma tables if running dedicated
1458         if (cls.state == ca_dedicated)
1459                 return;
1460
1461         wantgamma = v_hwgamma.integer;
1462         switch(vid.renderpath)
1463         {
1464         case RENDERPATH_GL20:
1465         case RENDERPATH_D3D9:
1466         case RENDERPATH_D3D10:
1467         case RENDERPATH_D3D11:
1468         case RENDERPATH_SOFT:
1469         case RENDERPATH_GLES2:
1470                 if (v_glslgamma.integer)
1471                         wantgamma = 0;
1472                 break;
1473         case RENDERPATH_GL11:
1474         case RENDERPATH_GL13:
1475         case RENDERPATH_GLES1:
1476                 break;
1477         }
1478         if(!vid_activewindow)
1479                 wantgamma = 0;
1480 #define BOUNDCVAR(cvar, m1, m2) c = &(cvar);f = bound(m1, c->value, m2);if (c->value != f) Cvar_SetValueQuick(c, f);
1481         BOUNDCVAR(v_gamma, 0.1, 5);
1482         BOUNDCVAR(v_contrast, 1, 5);
1483         BOUNDCVAR(v_brightness, 0, 0.8);
1484         //BOUNDCVAR(v_contrastboost, 0.0625, 16);
1485         BOUNDCVAR(v_color_black_r, 0, 0.8);
1486         BOUNDCVAR(v_color_black_g, 0, 0.8);
1487         BOUNDCVAR(v_color_black_b, 0, 0.8);
1488         BOUNDCVAR(v_color_grey_r, 0, 0.95);
1489         BOUNDCVAR(v_color_grey_g, 0, 0.95);
1490         BOUNDCVAR(v_color_grey_b, 0, 0.95);
1491         BOUNDCVAR(v_color_white_r, 1, 5);
1492         BOUNDCVAR(v_color_white_g, 1, 5);
1493         BOUNDCVAR(v_color_white_b, 1, 5);
1494 #undef BOUNDCVAR
1495
1496         // set vid_gammatables_trivial to true if the current settings would generate the identity gamma table
1497         vid_gammatables_trivial = false;
1498         if(v_psycho.integer == 0)
1499         if(v_contrastboost.value == 1)
1500         if(!vid.sRGB2D)
1501         if(!vid.sRGB3D)
1502         {
1503                 if(v_color_enable.integer)
1504                 {
1505                         if(v_color_black_r.value == 0)
1506                         if(v_color_black_g.value == 0)
1507                         if(v_color_black_b.value == 0)
1508                         if(fabs(v_color_grey_r.value - 0.5) < 1e-6)
1509                         if(fabs(v_color_grey_g.value - 0.5) < 1e-6)
1510                         if(fabs(v_color_grey_b.value - 0.5) < 1e-6)
1511                         if(v_color_white_r.value == 1)
1512                         if(v_color_white_g.value == 1)
1513                         if(v_color_white_b.value == 1)
1514                                 vid_gammatables_trivial = true;
1515                 }
1516                 else
1517                 {
1518                         if(v_gamma.value == 1)
1519                         if(v_contrast.value == 1)
1520                         if(v_brightness.value == 0)
1521                                 vid_gammatables_trivial = true;
1522                 }
1523         }
1524
1525 #define GAMMACHECK(cache, value) if (cache != (value)) gamma_changed = true;cache = (value)
1526         if(v_psycho.integer)
1527                 gamma_changed = true;
1528         GAMMACHECK(cachegamma      , v_gamma.value);
1529         GAMMACHECK(cachecontrast   , v_contrast.value);
1530         GAMMACHECK(cachebrightness , v_brightness.value);
1531         GAMMACHECK(cachecontrastboost, v_contrastboost.value);
1532         GAMMACHECK(cachecolorenable, v_color_enable.integer);
1533         GAMMACHECK(cacheblack[0]   , v_color_black_r.value);
1534         GAMMACHECK(cacheblack[1]   , v_color_black_g.value);
1535         GAMMACHECK(cacheblack[2]   , v_color_black_b.value);
1536         GAMMACHECK(cachegrey[0]    , v_color_grey_r.value);
1537         GAMMACHECK(cachegrey[1]    , v_color_grey_g.value);
1538         GAMMACHECK(cachegrey[2]    , v_color_grey_b.value);
1539         GAMMACHECK(cachewhite[0]   , v_color_white_r.value);
1540         GAMMACHECK(cachewhite[1]   , v_color_white_g.value);
1541         GAMMACHECK(cachewhite[2]   , v_color_white_b.value);
1542
1543         if(gamma_changed)
1544                 ++vid_gammatables_serial;
1545
1546         GAMMACHECK(cachehwgamma    , wantgamma);
1547 #undef GAMMACHECK
1548
1549         if (!force && !gamma_forcenextframe && !gamma_changed)
1550                 return;
1551
1552         gamma_forcenextframe = false;
1553
1554         if (cachehwgamma)
1555         {
1556                 if (!vid_usinghwgamma)
1557                 {
1558                         vid_usinghwgamma = true;
1559                         if (vid_gammarampsize != rampsize || !vid_gammaramps)
1560                         {
1561                                 vid_gammarampsize = rampsize;
1562                                 if (vid_gammaramps)
1563                                         Z_Free(vid_gammaramps);
1564                                 vid_gammaramps = (unsigned short *)Z_Malloc(6 * vid_gammarampsize * sizeof(unsigned short));
1565                                 vid_systemgammaramps = vid_gammaramps + 3 * vid_gammarampsize;
1566                         }
1567                         VID_GetGamma(vid_systemgammaramps, vid_gammarampsize);
1568                 }
1569
1570                 VID_BuildGammaTables(vid_gammaramps, vid_gammarampsize);
1571
1572                 // set vid_hardwaregammasupported to true if VID_SetGamma succeeds, OR if vid_hwgamma is >= 2 (forced gamma - ignores driver return value)
1573                 Cvar_SetValueQuick(&vid_hardwaregammasupported, VID_SetGamma(vid_gammaramps, vid_gammarampsize) || cachehwgamma >= 2);
1574                 // if custom gamma ramps failed (Windows stupidity), restore to system gamma
1575                 if(!vid_hardwaregammasupported.integer)
1576                 {
1577                         if (vid_usinghwgamma)
1578                         {
1579                                 vid_usinghwgamma = false;
1580                                 VID_SetGamma(vid_systemgammaramps, vid_gammarampsize);
1581                         }
1582                 }
1583         }
1584         else
1585         {
1586                 if (vid_usinghwgamma)
1587                 {
1588                         vid_usinghwgamma = false;
1589                         VID_SetGamma(vid_systemgammaramps, vid_gammarampsize);
1590                 }
1591         }
1592 }
1593
1594 void VID_RestoreSystemGamma(void)
1595 {
1596         if (vid_usinghwgamma)
1597         {
1598                 vid_usinghwgamma = false;
1599                 Cvar_SetValueQuick(&vid_hardwaregammasupported, VID_SetGamma(vid_systemgammaramps, vid_gammarampsize));
1600                 // force gamma situation to be reexamined next frame
1601                 gamma_forcenextframe = true;
1602         }
1603 }
1604
1605 #ifdef WIN32
1606 static dllfunction_t xinputdllfuncs[] =
1607 {
1608         {"XInputGetState", (void **) &qXInputGetState},
1609         {"XInputGetKeystroke", (void **) &qXInputGetKeystroke},
1610         {NULL, NULL}
1611 };
1612 static const char* xinputdllnames [] =
1613 {
1614         "xinput1_3.dll",
1615         "xinput1_2.dll",
1616         "xinput1_1.dll",
1617         NULL
1618 };
1619 static dllhandle_t xinputdll_dll = NULL;
1620 #endif
1621
1622 void VID_Shared_Init(void)
1623 {
1624 #ifdef SSE_POSSIBLE
1625         if (Sys_HaveSSE2())
1626         {
1627                 Con_Printf("DPSOFTRAST available (SSE2 instructions detected)\n");
1628                 Cvar_RegisterVariable(&vid_soft);
1629                 Cvar_RegisterVariable(&vid_soft_threads);
1630                 Cvar_RegisterVariable(&vid_soft_interlace);
1631         }
1632         else
1633                 Con_Printf("DPSOFTRAST not available (SSE2 disabled or not detected)\n");
1634 #else
1635         Con_Printf("DPSOFTRAST not available (SSE2 not compiled in)\n");
1636 #endif
1637
1638         Cvar_RegisterVariable(&vid_hardwaregammasupported);
1639         Cvar_RegisterVariable(&gl_info_vendor);
1640         Cvar_RegisterVariable(&gl_info_renderer);
1641         Cvar_RegisterVariable(&gl_info_version);
1642         Cvar_RegisterVariable(&gl_info_extensions);
1643         Cvar_RegisterVariable(&gl_info_platform);
1644         Cvar_RegisterVariable(&gl_info_driver);
1645         Cvar_RegisterVariable(&v_gamma);
1646         Cvar_RegisterVariable(&v_brightness);
1647         Cvar_RegisterVariable(&v_contrastboost);
1648         Cvar_RegisterVariable(&v_contrast);
1649
1650         Cvar_RegisterVariable(&v_color_enable);
1651         Cvar_RegisterVariable(&v_color_black_r);
1652         Cvar_RegisterVariable(&v_color_black_g);
1653         Cvar_RegisterVariable(&v_color_black_b);
1654         Cvar_RegisterVariable(&v_color_grey_r);
1655         Cvar_RegisterVariable(&v_color_grey_g);
1656         Cvar_RegisterVariable(&v_color_grey_b);
1657         Cvar_RegisterVariable(&v_color_white_r);
1658         Cvar_RegisterVariable(&v_color_white_g);
1659         Cvar_RegisterVariable(&v_color_white_b);
1660
1661         Cvar_RegisterVariable(&v_hwgamma);
1662         Cvar_RegisterVariable(&v_glslgamma);
1663
1664         Cvar_RegisterVariable(&v_psycho);
1665
1666         Cvar_RegisterVariable(&vid_fullscreen);
1667         Cvar_RegisterVariable(&vid_width);
1668         Cvar_RegisterVariable(&vid_height);
1669         Cvar_RegisterVariable(&vid_bitsperpixel);
1670         Cvar_RegisterVariable(&vid_samples);
1671         Cvar_RegisterVariable(&vid_multisampling);
1672         Cvar_RegisterVariable(&vid_refreshrate);
1673         Cvar_RegisterVariable(&vid_userefreshrate);
1674         Cvar_RegisterVariable(&vid_stereobuffer);
1675         Cvar_RegisterVariable(&vid_vsync);
1676         Cvar_RegisterVariable(&vid_mouse);
1677         Cvar_RegisterVariable(&vid_grabkeyboard);
1678         Cvar_RegisterVariable(&vid_touchscreen);
1679         Cvar_RegisterVariable(&vid_stick_mouse);
1680         Cvar_RegisterVariable(&vid_resizable);
1681         Cvar_RegisterVariable(&vid_minwidth);
1682         Cvar_RegisterVariable(&vid_minheight);
1683         Cvar_RegisterVariable(&vid_gl13);
1684         Cvar_RegisterVariable(&vid_gl20);
1685         Cvar_RegisterVariable(&gl_finish);
1686         Cvar_RegisterVariable(&vid_sRGB);
1687
1688         Cvar_RegisterVariable(&joy_active);
1689 #ifdef WIN32
1690         Cvar_RegisterVariable(&joy_xinputavailable);
1691 #endif
1692         Cvar_RegisterVariable(&joy_detected);
1693         Cvar_RegisterVariable(&joy_enable);
1694         Cvar_RegisterVariable(&joy_index);
1695         Cvar_RegisterVariable(&joy_axisforward);
1696         Cvar_RegisterVariable(&joy_axisside);
1697         Cvar_RegisterVariable(&joy_axisup);
1698         Cvar_RegisterVariable(&joy_axispitch);
1699         Cvar_RegisterVariable(&joy_axisyaw);
1700         //Cvar_RegisterVariable(&joy_axisroll);
1701         Cvar_RegisterVariable(&joy_deadzoneforward);
1702         Cvar_RegisterVariable(&joy_deadzoneside);
1703         Cvar_RegisterVariable(&joy_deadzoneup);
1704         Cvar_RegisterVariable(&joy_deadzonepitch);
1705         Cvar_RegisterVariable(&joy_deadzoneyaw);
1706         //Cvar_RegisterVariable(&joy_deadzoneroll);
1707         Cvar_RegisterVariable(&joy_sensitivityforward);
1708         Cvar_RegisterVariable(&joy_sensitivityside);
1709         Cvar_RegisterVariable(&joy_sensitivityup);
1710         Cvar_RegisterVariable(&joy_sensitivitypitch);
1711         Cvar_RegisterVariable(&joy_sensitivityyaw);
1712         //Cvar_RegisterVariable(&joy_sensitivityroll);
1713         Cvar_RegisterVariable(&joy_axiskeyevents);
1714         Cvar_RegisterVariable(&joy_axiskeyevents_deadzone);
1715         Cvar_RegisterVariable(&joy_x360_axisforward);
1716         Cvar_RegisterVariable(&joy_x360_axisside);
1717         Cvar_RegisterVariable(&joy_x360_axisup);
1718         Cvar_RegisterVariable(&joy_x360_axispitch);
1719         Cvar_RegisterVariable(&joy_x360_axisyaw);
1720         //Cvar_RegisterVariable(&joy_x360_axisroll);
1721         Cvar_RegisterVariable(&joy_x360_deadzoneforward);
1722         Cvar_RegisterVariable(&joy_x360_deadzoneside);
1723         Cvar_RegisterVariable(&joy_x360_deadzoneup);
1724         Cvar_RegisterVariable(&joy_x360_deadzonepitch);
1725         Cvar_RegisterVariable(&joy_x360_deadzoneyaw);
1726         //Cvar_RegisterVariable(&joy_x360_deadzoneroll);
1727         Cvar_RegisterVariable(&joy_x360_sensitivityforward);
1728         Cvar_RegisterVariable(&joy_x360_sensitivityside);
1729         Cvar_RegisterVariable(&joy_x360_sensitivityup);
1730         Cvar_RegisterVariable(&joy_x360_sensitivitypitch);
1731         Cvar_RegisterVariable(&joy_x360_sensitivityyaw);
1732         //Cvar_RegisterVariable(&joy_x360_sensitivityroll);
1733
1734 #ifdef WIN32
1735         Sys_LoadLibrary(xinputdllnames, &xinputdll_dll, xinputdllfuncs);
1736 #endif
1737
1738         Cmd_AddCommand("force_centerview", Force_CenterView_f, "recenters view (stops looking up/down)");
1739         Cmd_AddCommand("vid_restart", VID_Restart_f, "restarts video system (closes and reopens the window, restarts renderer)");
1740 }
1741
1742 int VID_Mode(int fullscreen, int width, int height, int bpp, float refreshrate, int stereobuffer, int samples)
1743 {
1744         viddef_mode_t mode;
1745
1746 #if 0
1747         // LordHavoc: FIXME: VorteX broke vid_restart with this, it is a mystery why it would ever work, commented out
1748         // multisampling should set at least 2 samples
1749         if (vid.support.arb_multisample)
1750         {
1751                 GL_MultiSampling(false);
1752                 if (vid_multisampling.integer)
1753                         samples = max(2, samples);
1754         }
1755 #endif
1756
1757         memset(&mode, 0, sizeof(mode));
1758         mode.fullscreen = fullscreen != 0;
1759         mode.width = width;
1760         mode.height = height;
1761         mode.bitsperpixel = bpp;
1762         mode.refreshrate = vid_userefreshrate.integer ? max(1, refreshrate) : 0;
1763         mode.userefreshrate = vid_userefreshrate.integer != 0;
1764         mode.stereobuffer = stereobuffer != 0;
1765         mode.samples = samples;
1766         cl_ignoremousemoves = 2;
1767         VID_ClearExtensions();
1768         if (VID_InitMode(&mode))
1769         {
1770                 // accept the (possibly modified) mode
1771                 vid.mode = mode;
1772                 vid.fullscreen     = vid.mode.fullscreen;
1773                 vid.width          = vid.mode.width;
1774                 vid.height         = vid.mode.height;
1775                 vid.bitsperpixel   = vid.mode.bitsperpixel;
1776                 vid.refreshrate    = vid.mode.refreshrate;
1777                 vid.userefreshrate = vid.mode.userefreshrate;
1778                 vid.stereobuffer   = vid.mode.stereobuffer;
1779                 vid.samples        = vid.mode.samples;
1780                 vid.stencil        = vid.mode.bitsperpixel > 16;
1781                 vid.sRGB2D         = vid_sRGB.integer >= 1 && vid.sRGBcapable2D;
1782                 vid.sRGB3D         = vid_sRGB.integer >= 1 && vid.sRGBcapable3D;
1783
1784                 Con_Printf("Video Mode: %s %dx%dx%dx%.2fhz%s%s\n", mode.fullscreen ? "fullscreen" : "window", mode.width, mode.height, mode.bitsperpixel, mode.refreshrate, mode.stereobuffer ? " stereo" : "", mode.samples > 1 ? va(" (%ix AA)", mode.samples) : "");
1785
1786                 Cvar_SetValueQuick(&vid_fullscreen, vid.mode.fullscreen);
1787                 Cvar_SetValueQuick(&vid_width, vid.mode.width);
1788                 Cvar_SetValueQuick(&vid_height, vid.mode.height);
1789                 Cvar_SetValueQuick(&vid_bitsperpixel, vid.mode.bitsperpixel);
1790                 Cvar_SetValueQuick(&vid_samples, vid.mode.samples);
1791                 if(vid_userefreshrate.integer)
1792                         Cvar_SetValueQuick(&vid_refreshrate, vid.mode.refreshrate);
1793                 Cvar_SetValueQuick(&vid_stereobuffer, vid.mode.stereobuffer);
1794
1795                 // activate multisampling
1796                 if (vid_multisampling.integer)
1797                         GL_MultiSampling(true);
1798
1799                 return true;
1800         }
1801         else
1802                 return false;
1803 }
1804
1805 static void VID_OpenSystems(void)
1806 {
1807         R_Modules_Start();
1808         S_Startup();
1809 }
1810
1811 static void VID_CloseSystems(void)
1812 {
1813         S_Shutdown();
1814         R_Modules_Shutdown();
1815 }
1816
1817 qboolean vid_commandlinecheck = true;
1818 extern qboolean vid_opened;
1819
1820 void VID_Restart_f(void)
1821 {
1822         // don't crash if video hasn't started yet
1823         if (vid_commandlinecheck)
1824                 return;
1825
1826         if (!vid_opened)
1827         {
1828                 SCR_BeginLoadingPlaque();
1829                 return;
1830         }
1831
1832         Con_Printf("VID_Restart: changing from %s %dx%dx%dbpp%s%s, to %s %dx%dx%dbpp%s%s.\n",
1833                 vid.mode.fullscreen ? "fullscreen" : "window", vid.mode.width, vid.mode.height, vid.mode.bitsperpixel, vid.mode.fullscreen && vid.mode.userefreshrate ? va("x%.2fhz", vid.mode.refreshrate) : "", vid.mode.samples > 1 ? va(" (%ix AA)", vid.mode.samples) : "",
1834                 vid_fullscreen.integer ? "fullscreen" : "window", vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_fullscreen.integer && vid_userefreshrate.integer ? va("x%.2fhz", vid_refreshrate.value) : "", vid_samples.integer > 1 ? va(" (%ix AA)", vid_samples.integer) : "");
1835         VID_CloseSystems();
1836         VID_Shutdown();
1837         if (!VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_refreshrate.value, vid_stereobuffer.integer, vid_samples.integer))
1838         {
1839                 Con_Print("Video mode change failed\n");
1840                 if (!VID_Mode(vid.mode.fullscreen, vid.mode.width, vid.mode.height, vid.mode.bitsperpixel, vid.mode.refreshrate, vid.mode.stereobuffer, vid.mode.samples))
1841                         Sys_Error("Unable to restore to last working video mode");
1842         }
1843         VID_OpenSystems();
1844 }
1845
1846 const char *vidfallbacks[][2] =
1847 {
1848         {"vid_stereobuffer", "0"},
1849         {"vid_samples", "1"},
1850         {"vid_userefreshrate", "0"},
1851         {"vid_width", "640"},
1852         {"vid_height", "480"},
1853         {"vid_bitsperpixel", "16"},
1854         {NULL, NULL}
1855 };
1856
1857 // this is only called once by Host_StartVideo and again on each FS_GameDir_f
1858 void VID_Start(void)
1859 {
1860         int i, width, height, success;
1861         if (vid_commandlinecheck)
1862         {
1863                 // interpret command-line parameters
1864                 vid_commandlinecheck = false;
1865 // COMMANDLINEOPTION: Video: -window performs +vid_fullscreen 0
1866                 if (COM_CheckParm("-window") || COM_CheckParm("-safe"))
1867                         Cvar_SetValueQuick(&vid_fullscreen, false);
1868 // COMMANDLINEOPTION: Video: -fullscreen performs +vid_fullscreen 1
1869                 if (COM_CheckParm("-fullscreen"))
1870                         Cvar_SetValueQuick(&vid_fullscreen, true);
1871                 width = 0;
1872                 height = 0;
1873 // COMMANDLINEOPTION: Video: -width <pixels> performs +vid_width <pixels> and also +vid_height <pixels*3/4> if only -width is specified (example: -width 1024 sets 1024x768 mode)
1874                 if ((i = COM_CheckParm("-width")) != 0)
1875                         width = atoi(com_argv[i+1]);
1876 // COMMANDLINEOPTION: Video: -height <pixels> performs +vid_height <pixels> and also +vid_width <pixels*4/3> if only -height is specified (example: -height 768 sets 1024x768 mode)
1877                 if ((i = COM_CheckParm("-height")) != 0)
1878                         height = atoi(com_argv[i+1]);
1879                 if (width == 0)
1880                         width = height * 4 / 3;
1881                 if (height == 0)
1882                         height = width * 3 / 4;
1883                 if (width)
1884                         Cvar_SetValueQuick(&vid_width, width);
1885                 if (height)
1886                         Cvar_SetValueQuick(&vid_height, height);
1887 // COMMANDLINEOPTION: Video: -bpp <bits> performs +vid_bitsperpixel <bits> (example -bpp 32 or -bpp 16)
1888                 if ((i = COM_CheckParm("-bpp")) != 0)
1889                         Cvar_SetQuick(&vid_bitsperpixel, com_argv[i+1]);
1890         }
1891
1892         success = VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_refreshrate.value, vid_stereobuffer.integer, vid_samples.integer);
1893         if (!success)
1894         {
1895                 Con_Print("Desired video mode fail, trying fallbacks...\n");
1896                 for (i = 0;!success && vidfallbacks[i][0] != NULL;i++)
1897                 {
1898                         Cvar_Set(vidfallbacks[i][0], vidfallbacks[i][1]);
1899                         success = VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_refreshrate.value, vid_stereobuffer.integer, vid_samples.integer);
1900                 }
1901                 if (!success)
1902                         Sys_Error("Video modes failed");
1903         }
1904         VID_OpenSystems();
1905 }
1906
1907 void VID_Stop(void)
1908 {
1909         VID_CloseSystems();
1910         VID_Shutdown();
1911 }
1912
1913 int VID_SortModes_Compare(const void *a_, const void *b_)
1914 {
1915         vid_mode_t *a = (vid_mode_t *) a_;
1916         vid_mode_t *b = (vid_mode_t *) b_;
1917         if(a->width > b->width)
1918                 return +1;
1919         if(a->width < b->width)
1920                 return -1;
1921         if(a->height > b->height)
1922                 return +1;
1923         if(a->height < b->height)
1924                 return -1;
1925         if(a->refreshrate > b->refreshrate)
1926                 return +1;
1927         if(a->refreshrate < b->refreshrate)
1928                 return -1;
1929         if(a->bpp > b->bpp)
1930                 return +1;
1931         if(a->bpp < b->bpp)
1932                 return -1;
1933         if(a->pixelheight_num * b->pixelheight_denom > a->pixelheight_denom * b->pixelheight_num)
1934                 return +1;
1935         if(a->pixelheight_num * b->pixelheight_denom < a->pixelheight_denom * b->pixelheight_num)
1936                 return -1;
1937         return 0;
1938 }
1939 size_t VID_SortModes(vid_mode_t *modes, size_t count, qboolean usebpp, qboolean userefreshrate, qboolean useaspect)
1940 {
1941         size_t i;
1942         if(count == 0)
1943                 return 0;
1944         // 1. sort them
1945         qsort(modes, count, sizeof(*modes), VID_SortModes_Compare);
1946         // 2. remove duplicates
1947         for(i = 0; i < count; ++i)
1948         {
1949                 if(modes[i].width && modes[i].height)
1950                 {
1951                         if(i == 0)
1952                                 continue;
1953                         if(modes[i].width != modes[i-1].width)
1954                                 continue;
1955                         if(modes[i].height != modes[i-1].height)
1956                                 continue;
1957                         if(userefreshrate)
1958                                 if(modes[i].refreshrate != modes[i-1].refreshrate)
1959                                         continue;
1960                         if(usebpp)
1961                                 if(modes[i].bpp != modes[i-1].bpp)
1962                                         continue;
1963                         if(useaspect)
1964                                 if(modes[i].pixelheight_num * modes[i-1].pixelheight_denom != modes[i].pixelheight_denom * modes[i-1].pixelheight_num)
1965                                         continue;
1966                 }
1967                 // a dupe, or a bogus mode!
1968                 if(i < count-1)
1969                         memmove(&modes[i], &modes[i+1], sizeof(*modes) * (count-1 - i));
1970                 --i; // check this index again, as mode i+1 is now here
1971                 --count;
1972         }
1973         return count;
1974 }
1975
1976 void VID_Soft_SharedSetup(void)
1977 {
1978         gl_platform = "DPSOFTRAST";
1979         gl_platformextensions = "";
1980
1981         gl_renderer = "DarkPlaces-Soft";
1982         gl_vendor = "Forest Hale";
1983         gl_version = "0.0";
1984         gl_extensions = "";
1985
1986         // clear the extension flags
1987         memset(&vid.support, 0, sizeof(vid.support));
1988         Cvar_SetQuick(&gl_info_extensions, "");
1989
1990         // DPSOFTRAST requires BGRA
1991         vid.forcetextype = TEXTYPE_BGRA;
1992
1993         vid.forcevbo = false;
1994         vid.support.arb_depth_texture = true;
1995         vid.support.arb_draw_buffers = true;
1996         vid.support.arb_occlusion_query = true;
1997         vid.support.arb_shadow = true;
1998         //vid.support.arb_texture_compression = true;
1999         vid.support.arb_texture_cube_map = true;
2000         vid.support.arb_texture_non_power_of_two = false;
2001         vid.support.arb_vertex_buffer_object = true;
2002         vid.support.ext_blend_subtract = true;
2003         vid.support.ext_draw_range_elements = true;
2004         vid.support.ext_framebuffer_object = true;
2005         vid.support.ext_texture_3d = true;
2006         //vid.support.ext_texture_compression_s3tc = true;
2007         vid.support.ext_texture_filter_anisotropic = true;
2008         vid.support.ati_separate_stencil = true;
2009         vid.support.ext_texture_srgb = false;
2010
2011         vid.maxtexturesize_2d = 16384;
2012         vid.maxtexturesize_3d = 512;
2013         vid.maxtexturesize_cubemap = 16384;
2014         vid.texunits = 4;
2015         vid.teximageunits = 32;
2016         vid.texarrayunits = 8;
2017         vid.max_anisotropy = 1;
2018         vid.maxdrawbuffers = 4;
2019
2020         vid.texunits = bound(4, vid.texunits, MAX_TEXTUREUNITS);
2021         vid.teximageunits = bound(16, vid.teximageunits, MAX_TEXTUREUNITS);
2022         vid.texarrayunits = bound(8, vid.texarrayunits, MAX_TEXTUREUNITS);
2023         Con_DPrintf("Using DarkPlaces Software Rasterizer rendering path\n");
2024         vid.renderpath = RENDERPATH_SOFT;
2025         vid.sRGBcapable2D = false;
2026         vid.sRGBcapable3D = false;
2027         vid.useinterleavedarrays = false;
2028
2029         Cvar_SetQuick(&gl_info_vendor, gl_vendor);
2030         Cvar_SetQuick(&gl_info_renderer, gl_renderer);
2031         Cvar_SetQuick(&gl_info_version, gl_version);
2032         Cvar_SetQuick(&gl_info_platform, gl_platform ? gl_platform : "");
2033         Cvar_SetQuick(&gl_info_driver, gl_driver);
2034
2035         // LordHavoc: report supported extensions
2036         Con_DPrintf("\nQuakeC extensions for server and client: %s\nQuakeC extensions for menu: %s\n", vm_sv_extensions, vm_m_extensions );
2037
2038         // clear to black (loading plaque will be seen over this)
2039         GL_Clear(GL_COLOR_BUFFER_BIT, NULL, 1.0f, 128);
2040 }