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