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