]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - vid_shared.c
slight speedup to collision_cache by using individual field compares
[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 // global video state
15 viddef_t vid;
16
17 // LordHavoc: these are only set in wgl
18 qboolean isG200 = false; // LordHavoc: the Matrox G200 can't do per pixel alpha, and it uses a D3D driver for GL... ugh...
19 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.
20
21 // AK FIXME -> input_dest
22 qboolean in_client_mouse = true;
23
24 // AK where should it be placed ?
25 float in_mouse_x, in_mouse_y;
26 float in_windowmouse_x, in_windowmouse_y;
27
28 // LordHavoc: if window is hidden, don't update screen
29 qboolean vid_hidden = true;
30 // LordHavoc: if window is not the active window, don't hog as much CPU time,
31 // let go of the mouse, turn off sound, and restore system gamma ramps...
32 qboolean vid_activewindow = true;
33
34 // we don't know until we try it!
35 cvar_t vid_hardwaregammasupported = {CVAR_READONLY,"vid_hardwaregammasupported","1", "indicates whether hardware gamma is supported (updated by attempts to set hardware gamma ramps)"};
36
37 // VorteX: more info cvars, mostly set in VID_CheckExtensions
38 cvar_t gl_info_vendor = {CVAR_READONLY, "gl_info_vendor", "", "indicates brand of graphics chip"};
39 cvar_t gl_info_renderer = {CVAR_READONLY, "gl_info_renderer", "", "indicates graphics chip model and other information"};
40 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."};
41 cvar_t gl_info_extensions = {CVAR_READONLY, "gl_info_extensions", "", "indicates extension list found by engine, space separated."};
42 cvar_t gl_info_platform = {CVAR_READONLY, "gl_info_platform", "", "indicates GL platform: WGL, GLX, or AGL."};
43 cvar_t gl_info_driver = {CVAR_READONLY, "gl_info_driver", "", "name of driver library (opengl32.dll, libGL.so.1, or whatever)."};
44
45 // whether hardware gamma ramps are currently in effect
46 qboolean vid_usinghwgamma = false;
47
48 int vid_gammarampsize = 0;
49 unsigned short *vid_gammaramps = NULL;
50 unsigned short *vid_systemgammaramps = NULL;
51
52 cvar_t vid_fullscreen = {CVAR_SAVE, "vid_fullscreen", "1", "use fullscreen (1) or windowed (0)"};
53 cvar_t vid_width = {CVAR_SAVE, "vid_width", "640", "resolution"};
54 cvar_t vid_height = {CVAR_SAVE, "vid_height", "480", "resolution"};
55 cvar_t vid_bitsperpixel = {CVAR_SAVE, "vid_bitsperpixel", "32", "how many bits per pixel to render at (32 or 16, 32 is recommended)"};
56 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)"};
57 cvar_t vid_refreshrate = {CVAR_SAVE, "vid_refreshrate", "60", "refresh rate to use, in hz (higher values flicker less, if supported by your monitor)"};
58 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"};
59 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"};
60
61 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"};
62 cvar_t vid_mouse = {CVAR_SAVE, "vid_mouse", "1", "whether to use the mouse in windowed mode (fullscreen always does)"};
63 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)"};
64 cvar_t vid_minwidth = {0, "vid_minwidth", "0", "minimum vid_width that is acceptable (to be set in default.cfg in mods)"};
65 cvar_t vid_minheight = {0, "vid_minheight", "0", "minimum vid_height that is acceptable (to be set in default.cfg in mods)"};
66 cvar_t vid_gl13 = {0, "vid_gl13", "1", "enables faster rendering using OpenGL 1.3 features (such as GL_ARB_texture_env_combine extension)"};
67 cvar_t vid_gl20 = {0, "vid_gl20", "1", "enables faster rendering using OpenGL 2.0 features (such as GL_ARB_fragment_shader extension)"};
68 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)"};
69
70 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"};
71 cvar_t vid_stick_mouse = {CVAR_SAVE, "vid_stick_mouse", "0", "have the mouse stuck in the center of the screen" };
72 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" };
73
74 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"};
75 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)"};
76 cvar_t v_brightness = {CVAR_SAVE, "v_brightness", "0", "brightness of black, useful for monitors that are too dark"};
77 cvar_t v_contrastboost = {CVAR_SAVE, "v_contrastboost", "1", "by how much to multiply the contrast in dark areas (1 is no change)"};
78 cvar_t v_color_enable = {CVAR_SAVE, "v_color_enable", "0", "enables black-grey-white color correction curve controls"};
79 cvar_t v_color_black_r = {CVAR_SAVE, "v_color_black_r", "0", "desired color of black"};
80 cvar_t v_color_black_g = {CVAR_SAVE, "v_color_black_g", "0", "desired color of black"};
81 cvar_t v_color_black_b = {CVAR_SAVE, "v_color_black_b", "0", "desired color of black"};
82 cvar_t v_color_grey_r = {CVAR_SAVE, "v_color_grey_r", "0.5", "desired color of grey"};
83 cvar_t v_color_grey_g = {CVAR_SAVE, "v_color_grey_g", "0.5", "desired color of grey"};
84 cvar_t v_color_grey_b = {CVAR_SAVE, "v_color_grey_b", "0.5", "desired color of grey"};
85 cvar_t v_color_white_r = {CVAR_SAVE, "v_color_white_r", "1", "desired color of white"};
86 cvar_t v_color_white_g = {CVAR_SAVE, "v_color_white_g", "1", "desired color of white"};
87 cvar_t v_color_white_b = {CVAR_SAVE, "v_color_white_b", "1", "desired color of white"};
88 cvar_t v_hwgamma = {CVAR_SAVE, "v_hwgamma", "1", "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"};
89 cvar_t v_glslgamma = {CVAR_SAVE, "v_glslgamma", "0", "enables use of GLSL to apply gamma correction ramps if available (note: overrides v_hwgamma)"};
90 cvar_t v_psycho = {0, "v_psycho", "0", "easter egg (does not work on Windows2000 or above)"};
91
92 // brand of graphics chip
93 const char *gl_vendor;
94 // graphics chip model and other information
95 const char *gl_renderer;
96 // begins with 1.0.0, 1.1.0, 1.2.0, 1.2.1, 1.3.0, 1.3.1, or 1.4.0
97 const char *gl_version;
98 // extensions list, space separated
99 const char *gl_extensions;
100 // WGL, GLX, or AGL
101 const char *gl_platform;
102 // another extensions list, containing platform-specific extensions that are
103 // not in the main list
104 const char *gl_platformextensions;
105 // name of driver library (opengl32.dll, libGL.so.1, or whatever)
106 char gl_driver[256];
107
108 // GL_ARB_multitexture
109 void (GLAPIENTRY *qglMultiTexCoord1f) (GLenum, GLfloat);
110 void (GLAPIENTRY *qglMultiTexCoord2f) (GLenum, GLfloat, GLfloat);
111 void (GLAPIENTRY *qglMultiTexCoord3f) (GLenum, GLfloat, GLfloat, GLfloat);
112 void (GLAPIENTRY *qglMultiTexCoord4f) (GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
113 void (GLAPIENTRY *qglActiveTexture) (GLenum);
114 void (GLAPIENTRY *qglClientActiveTexture) (GLenum);
115
116 // general GL functions
117
118 void (GLAPIENTRY *qglClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
119
120 void (GLAPIENTRY *qglClear)(GLbitfield mask);
121
122 void (GLAPIENTRY *qglAlphaFunc)(GLenum func, GLclampf ref);
123 void (GLAPIENTRY *qglBlendFunc)(GLenum sfactor, GLenum dfactor);
124 void (GLAPIENTRY *qglCullFace)(GLenum mode);
125
126 void (GLAPIENTRY *qglDrawBuffer)(GLenum mode);
127 void (GLAPIENTRY *qglReadBuffer)(GLenum mode);
128 void (GLAPIENTRY *qglEnable)(GLenum cap);
129 void (GLAPIENTRY *qglDisable)(GLenum cap);
130 GLboolean (GLAPIENTRY *qglIsEnabled)(GLenum cap);
131
132 void (GLAPIENTRY *qglEnableClientState)(GLenum cap);
133 void (GLAPIENTRY *qglDisableClientState)(GLenum cap);
134
135 void (GLAPIENTRY *qglGetBooleanv)(GLenum pname, GLboolean *params);
136 void (GLAPIENTRY *qglGetDoublev)(GLenum pname, GLdouble *params);
137 void (GLAPIENTRY *qglGetFloatv)(GLenum pname, GLfloat *params);
138 void (GLAPIENTRY *qglGetIntegerv)(GLenum pname, GLint *params);
139
140 GLenum (GLAPIENTRY *qglGetError)(void);
141 const GLubyte* (GLAPIENTRY *qglGetString)(GLenum name);
142 void (GLAPIENTRY *qglFinish)(void);
143 void (GLAPIENTRY *qglFlush)(void);
144
145 void (GLAPIENTRY *qglClearDepth)(GLclampd depth);
146 void (GLAPIENTRY *qglDepthFunc)(GLenum func);
147 void (GLAPIENTRY *qglDepthMask)(GLboolean flag);
148 void (GLAPIENTRY *qglDepthRange)(GLclampd near_val, GLclampd far_val);
149 void (GLAPIENTRY *qglColorMask)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
150
151 void (GLAPIENTRY *qglDrawRangeElements)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
152 void (GLAPIENTRY *qglDrawElements)(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
153 void (GLAPIENTRY *qglDrawArrays)(GLenum mode, GLint first, GLsizei count);
154 void (GLAPIENTRY *qglVertexPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
155 void (GLAPIENTRY *qglNormalPointer)(GLenum type, GLsizei stride, const GLvoid *ptr);
156 void (GLAPIENTRY *qglColorPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
157 void (GLAPIENTRY *qglTexCoordPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
158 void (GLAPIENTRY *qglArrayElement)(GLint i);
159
160 void (GLAPIENTRY *qglColor4ub)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
161 void (GLAPIENTRY *qglColor4f)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
162 void (GLAPIENTRY *qglTexCoord1f)(GLfloat s);
163 void (GLAPIENTRY *qglTexCoord2f)(GLfloat s, GLfloat t);
164 void (GLAPIENTRY *qglTexCoord3f)(GLfloat s, GLfloat t, GLfloat r);
165 void (GLAPIENTRY *qglTexCoord4f)(GLfloat s, GLfloat t, GLfloat r, GLfloat q);
166 void (GLAPIENTRY *qglVertex2f)(GLfloat x, GLfloat y);
167 void (GLAPIENTRY *qglVertex3f)(GLfloat x, GLfloat y, GLfloat z);
168 void (GLAPIENTRY *qglVertex4f)(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
169 void (GLAPIENTRY *qglBegin)(GLenum mode);
170 void (GLAPIENTRY *qglEnd)(void);
171
172 void (GLAPIENTRY *qglMatrixMode)(GLenum mode);
173 //void (GLAPIENTRY *qglOrtho)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val);
174 //void (GLAPIENTRY *qglFrustum)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val);
175 void (GLAPIENTRY *qglViewport)(GLint x, GLint y, GLsizei width, GLsizei height);
176 //void (GLAPIENTRY *qglPushMatrix)(void);
177 //void (GLAPIENTRY *qglPopMatrix)(void);
178 void (GLAPIENTRY *qglLoadIdentity)(void);
179 //void (GLAPIENTRY *qglLoadMatrixd)(const GLdouble *m);
180 void (GLAPIENTRY *qglLoadMatrixf)(const GLfloat *m);
181 //void (GLAPIENTRY *qglMultMatrixd)(const GLdouble *m);
182 //void (GLAPIENTRY *qglMultMatrixf)(const GLfloat *m);
183 //void (GLAPIENTRY *qglRotated)(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
184 //void (GLAPIENTRY *qglRotatef)(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
185 //void (GLAPIENTRY *qglScaled)(GLdouble x, GLdouble y, GLdouble z);
186 //void (GLAPIENTRY *qglScalef)(GLfloat x, GLfloat y, GLfloat z);
187 //void (GLAPIENTRY *qglTranslated)(GLdouble x, GLdouble y, GLdouble z);
188 //void (GLAPIENTRY *qglTranslatef)(GLfloat x, GLfloat y, GLfloat z);
189
190 void (GLAPIENTRY *qglReadPixels)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
191
192 void (GLAPIENTRY *qglStencilFunc)(GLenum func, GLint ref, GLuint mask);
193 void (GLAPIENTRY *qglStencilMask)(GLuint mask);
194 void (GLAPIENTRY *qglStencilOp)(GLenum fail, GLenum zfail, GLenum zpass);
195 void (GLAPIENTRY *qglClearStencil)(GLint s);
196
197 void (GLAPIENTRY *qglTexEnvf)(GLenum target, GLenum pname, GLfloat param);
198 void (GLAPIENTRY *qglTexEnvfv)(GLenum target, GLenum pname, const GLfloat *params);
199 void (GLAPIENTRY *qglTexEnvi)(GLenum target, GLenum pname, GLint param);
200 void (GLAPIENTRY *qglTexParameterf)(GLenum target, GLenum pname, GLfloat param);
201 void (GLAPIENTRY *qglTexParameterfv)(GLenum target, GLenum pname, GLfloat *params);
202 void (GLAPIENTRY *qglTexParameteri)(GLenum target, GLenum pname, GLint param);
203 void (GLAPIENTRY *qglGetTexParameterfv)(GLenum target, GLenum pname, GLfloat *params);
204 void (GLAPIENTRY *qglGetTexParameteriv)(GLenum target, GLenum pname, GLint *params);
205 void (GLAPIENTRY *qglGetTexLevelParameterfv)(GLenum target, GLint level, GLenum pname, GLfloat *params);
206 void (GLAPIENTRY *qglGetTexLevelParameteriv)(GLenum target, GLint level, GLenum pname, GLint *params);
207 void (GLAPIENTRY *qglGetTexImage)(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
208 void (GLAPIENTRY *qglHint)(GLenum target, GLenum mode);
209
210 void (GLAPIENTRY *qglGenTextures)(GLsizei n, GLuint *textures);
211 void (GLAPIENTRY *qglDeleteTextures)(GLsizei n, const GLuint *textures);
212 void (GLAPIENTRY *qglBindTexture)(GLenum target, GLuint texture);
213 //void (GLAPIENTRY *qglPrioritizeTextures)(GLsizei n, const GLuint *textures, const GLclampf *priorities);
214 //GLboolean (GLAPIENTRY *qglAreTexturesResident)(GLsizei n, const GLuint *textures, GLboolean *residences);
215 //GLboolean (GLAPIENTRY *qglIsTexture)(GLuint texture);
216 //void (GLAPIENTRY *qglPixelStoref)(GLenum pname, GLfloat param);
217 void (GLAPIENTRY *qglPixelStorei)(GLenum pname, GLint param);
218
219 //void (GLAPIENTRY *qglTexImage1D)(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
220 void (GLAPIENTRY *qglTexImage2D)(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
221 //void (GLAPIENTRY *qglTexSubImage1D)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
222 void (GLAPIENTRY *qglTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
223 //void (GLAPIENTRY *qglCopyTexImage1D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
224 void (GLAPIENTRY *qglCopyTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
225 //void (GLAPIENTRY *qglCopyTexSubImage1D)(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
226 void (GLAPIENTRY *qglCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
227
228
229 void (GLAPIENTRY *qglDrawRangeElementsEXT)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
230
231 //void (GLAPIENTRY *qglColorTableEXT)(int, int, int, int, int, const void *);
232
233 void (GLAPIENTRY *qglTexImage3D)(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
234 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);
235 void (GLAPIENTRY *qglCopyTexSubImage3D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
236
237 void (GLAPIENTRY *qglScissor)(GLint x, GLint y, GLsizei width, GLsizei height);
238
239 void (GLAPIENTRY *qglPolygonOffset)(GLfloat factor, GLfloat units);
240 void (GLAPIENTRY *qglPolygonMode)(GLenum face, GLenum mode);
241 void (GLAPIENTRY *qglPolygonStipple)(const GLubyte *mask);
242
243 //void (GLAPIENTRY *qglClipPlane)(GLenum plane, const GLdouble *equation);
244 //void (GLAPIENTRY *qglGetClipPlane)(GLenum plane, GLdouble *equation);
245
246 //[515]: added on 29.07.2005
247 void (GLAPIENTRY *qglLineWidth)(GLfloat width);
248 void (GLAPIENTRY *qglPointSize)(GLfloat size);
249
250 void (GLAPIENTRY *qglBlendEquationEXT)(GLenum);
251
252 void (GLAPIENTRY *qglStencilOpSeparate)(GLenum, GLenum, GLenum, GLenum);
253 void (GLAPIENTRY *qglStencilFuncSeparate)(GLenum, GLenum, GLint, GLuint);
254 void (GLAPIENTRY *qglActiveStencilFaceEXT)(GLenum);
255
256 void (GLAPIENTRY *qglDeleteShader)(GLuint obj);
257 void (GLAPIENTRY *qglDeleteProgram)(GLuint obj);
258 //GLuint (GLAPIENTRY *qglGetHandle)(GLenum pname);
259 void (GLAPIENTRY *qglDetachShader)(GLuint containerObj, GLuint attachedObj);
260 GLuint (GLAPIENTRY *qglCreateShader)(GLenum shaderType);
261 void (GLAPIENTRY *qglShaderSource)(GLuint shaderObj, GLsizei count, const GLchar **string, const GLint *length);
262 void (GLAPIENTRY *qglCompileShader)(GLuint shaderObj);
263 GLuint (GLAPIENTRY *qglCreateProgram)(void);
264 void (GLAPIENTRY *qglAttachShader)(GLuint containerObj, GLuint obj);
265 void (GLAPIENTRY *qglLinkProgram)(GLuint programObj);
266 void (GLAPIENTRY *qglUseProgram)(GLuint programObj);
267 void (GLAPIENTRY *qglValidateProgram)(GLuint programObj);
268 void (GLAPIENTRY *qglUniform1f)(GLint location, GLfloat v0);
269 void (GLAPIENTRY *qglUniform2f)(GLint location, GLfloat v0, GLfloat v1);
270 void (GLAPIENTRY *qglUniform3f)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
271 void (GLAPIENTRY *qglUniform4f)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
272 void (GLAPIENTRY *qglUniform1i)(GLint location, GLint v0);
273 void (GLAPIENTRY *qglUniform2i)(GLint location, GLint v0, GLint v1);
274 void (GLAPIENTRY *qglUniform3i)(GLint location, GLint v0, GLint v1, GLint v2);
275 void (GLAPIENTRY *qglUniform4i)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
276 void (GLAPIENTRY *qglUniform1fv)(GLint location, GLsizei count, const GLfloat *value);
277 void (GLAPIENTRY *qglUniform2fv)(GLint location, GLsizei count, const GLfloat *value);
278 void (GLAPIENTRY *qglUniform3fv)(GLint location, GLsizei count, const GLfloat *value);
279 void (GLAPIENTRY *qglUniform4fv)(GLint location, GLsizei count, const GLfloat *value);
280 void (GLAPIENTRY *qglUniform1iv)(GLint location, GLsizei count, const GLint *value);
281 void (GLAPIENTRY *qglUniform2iv)(GLint location, GLsizei count, const GLint *value);
282 void (GLAPIENTRY *qglUniform3iv)(GLint location, GLsizei count, const GLint *value);
283 void (GLAPIENTRY *qglUniform4iv)(GLint location, GLsizei count, const GLint *value);
284 void (GLAPIENTRY *qglUniformMatrix2fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
285 void (GLAPIENTRY *qglUniformMatrix3fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
286 void (GLAPIENTRY *qglUniformMatrix4fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
287 void (GLAPIENTRY *qglGetShaderiv)(GLuint obj, GLenum pname, GLint *params);
288 void (GLAPIENTRY *qglGetProgramiv)(GLuint obj, GLenum pname, GLint *params);
289 void (GLAPIENTRY *qglGetShaderInfoLog)(GLuint obj, GLsizei maxLength, GLsizei *length, GLchar *infoLog);
290 void (GLAPIENTRY *qglGetProgramInfoLog)(GLuint obj, GLsizei maxLength, GLsizei *length, GLchar *infoLog);
291 void (GLAPIENTRY *qglGetAttachedShaders)(GLuint containerObj, GLsizei maxCount, GLsizei *count, GLuint *obj);
292 GLint (GLAPIENTRY *qglGetUniformLocation)(GLuint programObj, const GLchar *name);
293 void (GLAPIENTRY *qglGetActiveUniform)(GLuint programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
294 void (GLAPIENTRY *qglGetUniformfv)(GLuint programObj, GLint location, GLfloat *params);
295 void (GLAPIENTRY *qglGetUniformiv)(GLuint programObj, GLint location, GLint *params);
296 void (GLAPIENTRY *qglGetShaderSource)(GLuint obj, GLsizei maxLength, GLsizei *length, GLchar *source);
297
298 void (GLAPIENTRY *qglVertexAttrib1f)(GLuint index, GLfloat v0);
299 void (GLAPIENTRY *qglVertexAttrib1s)(GLuint index, GLshort v0);
300 void (GLAPIENTRY *qglVertexAttrib1d)(GLuint index, GLdouble v0);
301 void (GLAPIENTRY *qglVertexAttrib2f)(GLuint index, GLfloat v0, GLfloat v1);
302 void (GLAPIENTRY *qglVertexAttrib2s)(GLuint index, GLshort v0, GLshort v1);
303 void (GLAPIENTRY *qglVertexAttrib2d)(GLuint index, GLdouble v0, GLdouble v1);
304 void (GLAPIENTRY *qglVertexAttrib3f)(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2);
305 void (GLAPIENTRY *qglVertexAttrib3s)(GLuint index, GLshort v0, GLshort v1, GLshort v2);
306 void (GLAPIENTRY *qglVertexAttrib3d)(GLuint index, GLdouble v0, GLdouble v1, GLdouble v2);
307 void (GLAPIENTRY *qglVertexAttrib4f)(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
308 void (GLAPIENTRY *qglVertexAttrib4s)(GLuint index, GLshort v0, GLshort v1, GLshort v2, GLshort v3);
309 void (GLAPIENTRY *qglVertexAttrib4d)(GLuint index, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3);
310 void (GLAPIENTRY *qglVertexAttrib4Nub)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
311 void (GLAPIENTRY *qglVertexAttrib1fv)(GLuint index, const GLfloat *v);
312 void (GLAPIENTRY *qglVertexAttrib1sv)(GLuint index, const GLshort *v);
313 void (GLAPIENTRY *qglVertexAttrib1dv)(GLuint index, const GLdouble *v);
314 void (GLAPIENTRY *qglVertexAttrib2fv)(GLuint index, const GLfloat *v);
315 void (GLAPIENTRY *qglVertexAttrib2sv)(GLuint index, const GLshort *v);
316 void (GLAPIENTRY *qglVertexAttrib2dv)(GLuint index, const GLdouble *v);
317 void (GLAPIENTRY *qglVertexAttrib3fv)(GLuint index, const GLfloat *v);
318 void (GLAPIENTRY *qglVertexAttrib3sv)(GLuint index, const GLshort *v);
319 void (GLAPIENTRY *qglVertexAttrib3dv)(GLuint index, const GLdouble *v);
320 void (GLAPIENTRY *qglVertexAttrib4fv)(GLuint index, const GLfloat *v);
321 void (GLAPIENTRY *qglVertexAttrib4sv)(GLuint index, const GLshort *v);
322 void (GLAPIENTRY *qglVertexAttrib4dv)(GLuint index, const GLdouble *v);
323 void (GLAPIENTRY *qglVertexAttrib4iv)(GLuint index, const GLint *v);
324 void (GLAPIENTRY *qglVertexAttrib4bv)(GLuint index, const GLbyte *v);
325 void (GLAPIENTRY *qglVertexAttrib4ubv)(GLuint index, const GLubyte *v);
326 void (GLAPIENTRY *qglVertexAttrib4usv)(GLuint index, const GLushort *v);
327 void (GLAPIENTRY *qglVertexAttrib4uiv)(GLuint index, const GLuint *v);
328 void (GLAPIENTRY *qglVertexAttrib4Nbv)(GLuint index, const GLbyte *v);
329 void (GLAPIENTRY *qglVertexAttrib4Nsv)(GLuint index, const GLshort *v);
330 void (GLAPIENTRY *qglVertexAttrib4Niv)(GLuint index, const GLint *v);
331 void (GLAPIENTRY *qglVertexAttrib4Nubv)(GLuint index, const GLubyte *v);
332 void (GLAPIENTRY *qglVertexAttrib4Nusv)(GLuint index, const GLushort *v);
333 void (GLAPIENTRY *qglVertexAttrib4Nuiv)(GLuint index, const GLuint *v);
334 void (GLAPIENTRY *qglVertexAttribPointer)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer);
335 void (GLAPIENTRY *qglEnableVertexAttribArray)(GLuint index);
336 void (GLAPIENTRY *qglDisableVertexAttribArray)(GLuint index);
337 void (GLAPIENTRY *qglBindAttribLocation)(GLuint programObj, GLuint index, const GLchar *name);
338 void (GLAPIENTRY *qglGetActiveAttrib)(GLuint programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
339 GLint (GLAPIENTRY *qglGetAttribLocation)(GLuint programObj, const GLchar *name);
340 void (GLAPIENTRY *qglGetVertexAttribdv)(GLuint index, GLenum pname, GLdouble *params);
341 void (GLAPIENTRY *qglGetVertexAttribfv)(GLuint index, GLenum pname, GLfloat *params);
342 void (GLAPIENTRY *qglGetVertexAttribiv)(GLuint index, GLenum pname, GLint *params);
343 void (GLAPIENTRY *qglGetVertexAttribPointerv)(GLuint index, GLenum pname, GLvoid **pointer);
344
345 //GL_ARB_vertex_buffer_object
346 void (GLAPIENTRY *qglBindBufferARB) (GLenum target, GLuint buffer);
347 void (GLAPIENTRY *qglDeleteBuffersARB) (GLsizei n, const GLuint *buffers);
348 void (GLAPIENTRY *qglGenBuffersARB) (GLsizei n, GLuint *buffers);
349 GLboolean (GLAPIENTRY *qglIsBufferARB) (GLuint buffer);
350 GLvoid* (GLAPIENTRY *qglMapBufferARB) (GLenum target, GLenum access);
351 GLboolean (GLAPIENTRY *qglUnmapBufferARB) (GLenum target);
352 void (GLAPIENTRY *qglBufferDataARB) (GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage);
353 void (GLAPIENTRY *qglBufferSubDataARB) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data);
354
355 //GL_EXT_framebuffer_object
356 GLboolean (GLAPIENTRY *qglIsRenderbufferEXT)(GLuint renderbuffer);
357 void (GLAPIENTRY *qglBindRenderbufferEXT)(GLenum target, GLuint renderbuffer);
358 void (GLAPIENTRY *qglDeleteRenderbuffersEXT)(GLsizei n, const GLuint *renderbuffers);
359 void (GLAPIENTRY *qglGenRenderbuffersEXT)(GLsizei n, GLuint *renderbuffers);
360 void (GLAPIENTRY *qglRenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
361 void (GLAPIENTRY *qglGetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint *params);
362 GLboolean (GLAPIENTRY *qglIsFramebufferEXT)(GLuint framebuffer);
363 void (GLAPIENTRY *qglBindFramebufferEXT)(GLenum target, GLuint framebuffer);
364 void (GLAPIENTRY *qglDeleteFramebuffersEXT)(GLsizei n, const GLuint *framebuffers);
365 void (GLAPIENTRY *qglGenFramebuffersEXT)(GLsizei n, GLuint *framebuffers);
366 GLenum (GLAPIENTRY *qglCheckFramebufferStatusEXT)(GLenum target);
367 //void (GLAPIENTRY *qglFramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
368 void (GLAPIENTRY *qglFramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
369 void (GLAPIENTRY *qglFramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
370 void (GLAPIENTRY *qglFramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
371 void (GLAPIENTRY *qglGetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint *params);
372 void (GLAPIENTRY *qglGenerateMipmapEXT)(GLenum target);
373
374 void (GLAPIENTRY *qglDrawBuffersARB)(GLsizei n, const GLenum *bufs);
375
376 void (GLAPIENTRY *qglCompressedTexImage3DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data);
377 void (GLAPIENTRY *qglCompressedTexImage2DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border,  GLsizei imageSize, const void *data);
378 //void (GLAPIENTRY *qglCompressedTexImage1DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data);
379 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);
380 void (GLAPIENTRY *qglCompressedTexSubImage2DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data);
381 //void (GLAPIENTRY *qglCompressedTexSubImage1DARB)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data);
382 void (GLAPIENTRY *qglGetCompressedTexImageARB)(GLenum target, GLint lod, void *img);
383
384 void (GLAPIENTRY *qglGenQueriesARB)(GLsizei n, GLuint *ids);
385 void (GLAPIENTRY *qglDeleteQueriesARB)(GLsizei n, const GLuint *ids);
386 GLboolean (GLAPIENTRY *qglIsQueryARB)(GLuint qid);
387 void (GLAPIENTRY *qglBeginQueryARB)(GLenum target, GLuint qid);
388 void (GLAPIENTRY *qglEndQueryARB)(GLenum target);
389 void (GLAPIENTRY *qglGetQueryivARB)(GLenum target, GLenum pname, GLint *params);
390 void (GLAPIENTRY *qglGetQueryObjectivARB)(GLuint qid, GLenum pname, GLint *params);
391 void (GLAPIENTRY *qglGetQueryObjectuivARB)(GLuint qid, GLenum pname, GLuint *params);
392
393 #if _MSC_VER >= 1400
394 #define sscanf sscanf_s
395 #endif
396
397 qboolean GL_CheckExtension(const char *minglver_or_ext, const dllfunction_t *funcs, const char *disableparm, int silent)
398 {
399         int failed = false;
400         const dllfunction_t *func;
401         struct { int major, minor; } min_version, curr_version;
402         char extstr[MAX_INPUTLINE];
403         int ext;
404
405         if(sscanf(minglver_or_ext, "%d.%d", &min_version.major, &min_version.minor) == 2)
406                 ext = 0; // opengl version
407         else if(minglver_or_ext[0] != toupper(minglver_or_ext[0]))
408                 ext = -1; // pseudo name
409         else
410                 ext = 1; // extension name
411
412         if (ext)
413                 Con_DPrintf("checking for %s...  ", minglver_or_ext);
414         else
415                 Con_DPrintf("checking for OpenGL %s core features...  ", minglver_or_ext);
416
417         for (func = funcs;func && func->name;func++)
418                 *func->funcvariable = NULL;
419
420         if (disableparm && (COM_CheckParm(disableparm) || COM_CheckParm("-safe")))
421         {
422                 Con_DPrint("disabled by commandline\n");
423                 return false;
424         }
425
426         if (ext == 1) // opengl extension
427         {
428                 if (!strstr(gl_extensions ? gl_extensions : "", minglver_or_ext) && !strstr(gl_platformextensions ? gl_platformextensions : "", minglver_or_ext))
429                 {
430                         Con_DPrint("not detected\n");
431                         return false;
432                 }
433         }
434
435         if(ext == 0) // opengl version
436         {
437                 if (sscanf(gl_version, "%d.%d", &curr_version.major, &curr_version.minor) < 2)
438                         curr_version.major = curr_version.minor = 1;
439
440                 if (curr_version.major < min_version.major || (curr_version.major == min_version.major && curr_version.minor < min_version.minor))
441                 {
442                         Con_DPrintf("not detected (OpenGL %d.%d loaded)\n", curr_version.major, curr_version.minor);
443                         return false;
444                 }
445         }
446
447         for (func = funcs;func && func->name != NULL;func++)
448         {
449                 // Con_DPrintf("\n    %s...  ", func->name);
450
451                 // functions are cleared before all the extensions are evaluated
452                 if (!(*func->funcvariable = (void *) GL_GetProcAddress(func->name)))
453                 {
454                         if (ext && !silent)
455                                 Con_DPrintf("%s is missing function \"%s\" - broken driver!\n", minglver_or_ext, func->name);
456                         if (!ext)
457                                 Con_Printf("OpenGL %s core features are missing function \"%s\" - broken driver!\n", minglver_or_ext, func->name);
458                         failed = true;
459                 }
460         }
461         // delay the return so it prints all missing functions
462         if (failed)
463                 return false;
464         // VorteX: add to found extension list
465         dpsnprintf(extstr, sizeof(extstr), "%s %s ", gl_info_extensions.string, minglver_or_ext);
466         Cvar_SetQuick(&gl_info_extensions, extstr);
467
468         Con_DPrint("enabled\n");
469         return true;
470 }
471
472 static dllfunction_t opengl110funcs[] =
473 {
474         {"glClearColor", (void **) &qglClearColor},
475         {"glClear", (void **) &qglClear},
476         {"glAlphaFunc", (void **) &qglAlphaFunc},
477         {"glBlendFunc", (void **) &qglBlendFunc},
478         {"glCullFace", (void **) &qglCullFace},
479         {"glDrawBuffer", (void **) &qglDrawBuffer},
480         {"glReadBuffer", (void **) &qglReadBuffer},
481         {"glEnable", (void **) &qglEnable},
482         {"glDisable", (void **) &qglDisable},
483         {"glIsEnabled", (void **) &qglIsEnabled},
484         {"glEnableClientState", (void **) &qglEnableClientState},
485         {"glDisableClientState", (void **) &qglDisableClientState},
486         {"glGetBooleanv", (void **) &qglGetBooleanv},
487         {"glGetDoublev", (void **) &qglGetDoublev},
488         {"glGetFloatv", (void **) &qglGetFloatv},
489         {"glGetIntegerv", (void **) &qglGetIntegerv},
490         {"glGetError", (void **) &qglGetError},
491         {"glGetString", (void **) &qglGetString},
492         {"glFinish", (void **) &qglFinish},
493         {"glFlush", (void **) &qglFlush},
494         {"glClearDepth", (void **) &qglClearDepth},
495         {"glDepthFunc", (void **) &qglDepthFunc},
496         {"glDepthMask", (void **) &qglDepthMask},
497         {"glDepthRange", (void **) &qglDepthRange},
498         {"glDrawElements", (void **) &qglDrawElements},
499         {"glDrawArrays", (void **) &qglDrawArrays},
500         {"glColorMask", (void **) &qglColorMask},
501         {"glVertexPointer", (void **) &qglVertexPointer},
502         {"glNormalPointer", (void **) &qglNormalPointer},
503         {"glColorPointer", (void **) &qglColorPointer},
504         {"glTexCoordPointer", (void **) &qglTexCoordPointer},
505         {"glArrayElement", (void **) &qglArrayElement},
506         {"glColor4ub", (void **) &qglColor4ub},
507         {"glColor4f", (void **) &qglColor4f},
508         {"glTexCoord1f", (void **) &qglTexCoord1f},
509         {"glTexCoord2f", (void **) &qglTexCoord2f},
510         {"glTexCoord3f", (void **) &qglTexCoord3f},
511         {"glTexCoord4f", (void **) &qglTexCoord4f},
512         {"glVertex2f", (void **) &qglVertex2f},
513         {"glVertex3f", (void **) &qglVertex3f},
514         {"glVertex4f", (void **) &qglVertex4f},
515         {"glBegin", (void **) &qglBegin},
516         {"glEnd", (void **) &qglEnd},
517 //[515]: added on 29.07.2005
518         {"glLineWidth", (void**) &qglLineWidth},
519         {"glPointSize", (void**) &qglPointSize},
520 //
521         {"glMatrixMode", (void **) &qglMatrixMode},
522 //      {"glOrtho", (void **) &qglOrtho},
523 //      {"glFrustum", (void **) &qglFrustum},
524         {"glViewport", (void **) &qglViewport},
525 //      {"glPushMatrix", (void **) &qglPushMatrix},
526 //      {"glPopMatrix", (void **) &qglPopMatrix},
527         {"glLoadIdentity", (void **) &qglLoadIdentity},
528 //      {"glLoadMatrixd", (void **) &qglLoadMatrixd},
529         {"glLoadMatrixf", (void **) &qglLoadMatrixf},
530 //      {"glMultMatrixd", (void **) &qglMultMatrixd},
531 //      {"glMultMatrixf", (void **) &qglMultMatrixf},
532 //      {"glRotated", (void **) &qglRotated},
533 //      {"glRotatef", (void **) &qglRotatef},
534 //      {"glScaled", (void **) &qglScaled},
535 //      {"glScalef", (void **) &qglScalef},
536 //      {"glTranslated", (void **) &qglTranslated},
537 //      {"glTranslatef", (void **) &qglTranslatef},
538         {"glReadPixels", (void **) &qglReadPixels},
539         {"glStencilFunc", (void **) &qglStencilFunc},
540         {"glStencilMask", (void **) &qglStencilMask},
541         {"glStencilOp", (void **) &qglStencilOp},
542         {"glClearStencil", (void **) &qglClearStencil},
543         {"glTexEnvf", (void **) &qglTexEnvf},
544         {"glTexEnvfv", (void **) &qglTexEnvfv},
545         {"glTexEnvi", (void **) &qglTexEnvi},
546         {"glTexParameterf", (void **) &qglTexParameterf},
547         {"glTexParameterfv", (void **) &qglTexParameterfv},
548         {"glTexParameteri", (void **) &qglTexParameteri},
549         {"glGetTexImage", (void **) &qglGetTexImage},
550         {"glGetTexParameterfv", (void **) &qglGetTexParameterfv},
551         {"glGetTexParameteriv", (void **) &qglGetTexParameteriv},
552         {"glGetTexLevelParameterfv", (void **) &qglGetTexLevelParameterfv},
553         {"glGetTexLevelParameteriv", (void **) &qglGetTexLevelParameteriv},
554         {"glHint", (void **) &qglHint},
555 //      {"glPixelStoref", (void **) &qglPixelStoref},
556         {"glPixelStorei", (void **) &qglPixelStorei},
557         {"glGenTextures", (void **) &qglGenTextures},
558         {"glDeleteTextures", (void **) &qglDeleteTextures},
559         {"glBindTexture", (void **) &qglBindTexture},
560 //      {"glPrioritizeTextures", (void **) &qglPrioritizeTextures},
561 //      {"glAreTexturesResident", (void **) &qglAreTexturesResident},
562 //      {"glIsTexture", (void **) &qglIsTexture},
563 //      {"glTexImage1D", (void **) &qglTexImage1D},
564         {"glTexImage2D", (void **) &qglTexImage2D},
565 //      {"glTexSubImage1D", (void **) &qglTexSubImage1D},
566         {"glTexSubImage2D", (void **) &qglTexSubImage2D},
567 //      {"glCopyTexImage1D", (void **) &qglCopyTexImage1D},
568         {"glCopyTexImage2D", (void **) &qglCopyTexImage2D},
569 //      {"glCopyTexSubImage1D", (void **) &qglCopyTexSubImage1D},
570         {"glCopyTexSubImage2D", (void **) &qglCopyTexSubImage2D},
571         {"glScissor", (void **) &qglScissor},
572         {"glPolygonOffset", (void **) &qglPolygonOffset},
573         {"glPolygonMode", (void **) &qglPolygonMode},
574         {"glPolygonStipple", (void **) &qglPolygonStipple},
575 //      {"glClipPlane", (void **) &qglClipPlane},
576 //      {"glGetClipPlane", (void **) &qglGetClipPlane},
577         {NULL, NULL}
578 };
579
580 static dllfunction_t drawrangeelementsfuncs[] =
581 {
582         {"glDrawRangeElements", (void **) &qglDrawRangeElements},
583         {NULL, NULL}
584 };
585
586 static dllfunction_t drawrangeelementsextfuncs[] =
587 {
588         {"glDrawRangeElementsEXT", (void **) &qglDrawRangeElementsEXT},
589         {NULL, NULL}
590 };
591
592 static dllfunction_t multitexturefuncs[] =
593 {
594         {"glMultiTexCoord1fARB", (void **) &qglMultiTexCoord1f},
595         {"glMultiTexCoord2fARB", (void **) &qglMultiTexCoord2f},
596         {"glMultiTexCoord3fARB", (void **) &qglMultiTexCoord3f},
597         {"glMultiTexCoord4fARB", (void **) &qglMultiTexCoord4f},
598         {"glActiveTextureARB", (void **) &qglActiveTexture},
599         {"glClientActiveTextureARB", (void **) &qglClientActiveTexture},
600         {NULL, NULL}
601 };
602
603 static dllfunction_t texture3dextfuncs[] =
604 {
605         {"glTexImage3DEXT", (void **) &qglTexImage3D},
606         {"glTexSubImage3DEXT", (void **) &qglTexSubImage3D},
607         {"glCopyTexSubImage3DEXT", (void **) &qglCopyTexSubImage3D},
608         {NULL, NULL}
609 };
610
611 static dllfunction_t atiseparatestencilfuncs[] =
612 {
613         {"glStencilOpSeparateATI", (void **) &qglStencilOpSeparate},
614         {"glStencilFuncSeparateATI", (void **) &qglStencilFuncSeparate},
615         {NULL, NULL}
616 };
617
618 static dllfunction_t gl2separatestencilfuncs[] =
619 {
620         {"glStencilOpSeparate", (void **) &qglStencilOpSeparate},
621         {"glStencilFuncSeparate", (void **) &qglStencilFuncSeparate},
622         {NULL, NULL}
623 };
624
625 static dllfunction_t stenciltwosidefuncs[] =
626 {
627         {"glActiveStencilFaceEXT", (void **) &qglActiveStencilFaceEXT},
628         {NULL, NULL}
629 };
630
631 static dllfunction_t blendequationfuncs[] =
632 {
633         {"glBlendEquationEXT", (void **) &qglBlendEquationEXT},
634         {NULL, NULL}
635 };
636
637 static dllfunction_t gl20shaderfuncs[] =
638 {
639         {"glDeleteShader", (void **) &qglDeleteShader},
640         {"glDeleteProgram", (void **) &qglDeleteProgram},
641 //      {"glGetHandle", (void **) &qglGetHandle},
642         {"glDetachShader", (void **) &qglDetachShader},
643         {"glCreateShader", (void **) &qglCreateShader},
644         {"glShaderSource", (void **) &qglShaderSource},
645         {"glCompileShader", (void **) &qglCompileShader},
646         {"glCreateProgram", (void **) &qglCreateProgram},
647         {"glAttachShader", (void **) &qglAttachShader},
648         {"glLinkProgram", (void **) &qglLinkProgram},
649         {"glUseProgram", (void **) &qglUseProgram},
650         {"glValidateProgram", (void **) &qglValidateProgram},
651         {"glUniform1f", (void **) &qglUniform1f},
652         {"glUniform2f", (void **) &qglUniform2f},
653         {"glUniform3f", (void **) &qglUniform3f},
654         {"glUniform4f", (void **) &qglUniform4f},
655         {"glUniform1i", (void **) &qglUniform1i},
656         {"glUniform2i", (void **) &qglUniform2i},
657         {"glUniform3i", (void **) &qglUniform3i},
658         {"glUniform4i", (void **) &qglUniform4i},
659         {"glUniform1fv", (void **) &qglUniform1fv},
660         {"glUniform2fv", (void **) &qglUniform2fv},
661         {"glUniform3fv", (void **) &qglUniform3fv},
662         {"glUniform4fv", (void **) &qglUniform4fv},
663         {"glUniform1iv", (void **) &qglUniform1iv},
664         {"glUniform2iv", (void **) &qglUniform2iv},
665         {"glUniform3iv", (void **) &qglUniform3iv},
666         {"glUniform4iv", (void **) &qglUniform4iv},
667         {"glUniformMatrix2fv", (void **) &qglUniformMatrix2fv},
668         {"glUniformMatrix3fv", (void **) &qglUniformMatrix3fv},
669         {"glUniformMatrix4fv", (void **) &qglUniformMatrix4fv},
670         {"glGetShaderiv", (void **) &qglGetShaderiv},
671         {"glGetProgramiv", (void **) &qglGetProgramiv},
672         {"glGetShaderInfoLog", (void **) &qglGetShaderInfoLog},
673         {"glGetProgramInfoLog", (void **) &qglGetProgramInfoLog},
674         {"glGetAttachedShaders", (void **) &qglGetAttachedShaders},
675         {"glGetUniformLocation", (void **) &qglGetUniformLocation},
676         {"glGetActiveUniform", (void **) &qglGetActiveUniform},
677         {"glGetUniformfv", (void **) &qglGetUniformfv},
678         {"glGetUniformiv", (void **) &qglGetUniformiv},
679         {"glGetShaderSource", (void **) &qglGetShaderSource},
680         {"glVertexAttrib1f", (void **) &qglVertexAttrib1f},
681         {"glVertexAttrib1s", (void **) &qglVertexAttrib1s},
682         {"glVertexAttrib1d", (void **) &qglVertexAttrib1d},
683         {"glVertexAttrib2f", (void **) &qglVertexAttrib2f},
684         {"glVertexAttrib2s", (void **) &qglVertexAttrib2s},
685         {"glVertexAttrib2d", (void **) &qglVertexAttrib2d},
686         {"glVertexAttrib3f", (void **) &qglVertexAttrib3f},
687         {"glVertexAttrib3s", (void **) &qglVertexAttrib3s},
688         {"glVertexAttrib3d", (void **) &qglVertexAttrib3d},
689         {"glVertexAttrib4f", (void **) &qglVertexAttrib4f},
690         {"glVertexAttrib4s", (void **) &qglVertexAttrib4s},
691         {"glVertexAttrib4d", (void **) &qglVertexAttrib4d},
692         {"glVertexAttrib4Nub", (void **) &qglVertexAttrib4Nub},
693         {"glVertexAttrib1fv", (void **) &qglVertexAttrib1fv},
694         {"glVertexAttrib1sv", (void **) &qglVertexAttrib1sv},
695         {"glVertexAttrib1dv", (void **) &qglVertexAttrib1dv},
696         {"glVertexAttrib2fv", (void **) &qglVertexAttrib1fv},
697         {"glVertexAttrib2sv", (void **) &qglVertexAttrib1sv},
698         {"glVertexAttrib2dv", (void **) &qglVertexAttrib1dv},
699         {"glVertexAttrib3fv", (void **) &qglVertexAttrib1fv},
700         {"glVertexAttrib3sv", (void **) &qglVertexAttrib1sv},
701         {"glVertexAttrib3dv", (void **) &qglVertexAttrib1dv},
702         {"glVertexAttrib4fv", (void **) &qglVertexAttrib1fv},
703         {"glVertexAttrib4sv", (void **) &qglVertexAttrib1sv},
704         {"glVertexAttrib4dv", (void **) &qglVertexAttrib1dv},
705 //      {"glVertexAttrib4iv", (void **) &qglVertexAttrib1iv},
706 //      {"glVertexAttrib4bv", (void **) &qglVertexAttrib1bv},
707 //      {"glVertexAttrib4ubv", (void **) &qglVertexAttrib1ubv},
708 //      {"glVertexAttrib4usv", (void **) &qglVertexAttrib1usv},
709 //      {"glVertexAttrib4uiv", (void **) &qglVertexAttrib1uiv},
710 //      {"glVertexAttrib4Nbv", (void **) &qglVertexAttrib1Nbv},
711 //      {"glVertexAttrib4Nsv", (void **) &qglVertexAttrib1Nsv},
712 //      {"glVertexAttrib4Niv", (void **) &qglVertexAttrib1Niv},
713 //      {"glVertexAttrib4Nubv", (void **) &qglVertexAttrib1Nubv},
714 //      {"glVertexAttrib4Nusv", (void **) &qglVertexAttrib1Nusv},
715 //      {"glVertexAttrib4Nuiv", (void **) &qglVertexAttrib1Nuiv},
716         {"glVertexAttribPointer", (void **) &qglVertexAttribPointer},
717         {"glEnableVertexAttribArray", (void **) &qglEnableVertexAttribArray},
718         {"glDisableVertexAttribArray", (void **) &qglDisableVertexAttribArray},
719         {"glBindAttribLocation", (void **) &qglBindAttribLocation},
720         {"glGetActiveAttrib", (void **) &qglGetActiveAttrib},
721         {"glGetAttribLocation", (void **) &qglGetAttribLocation},
722         {"glGetVertexAttribdv", (void **) &qglGetVertexAttribdv},
723         {"glGetVertexAttribfv", (void **) &qglGetVertexAttribfv},
724         {"glGetVertexAttribiv", (void **) &qglGetVertexAttribiv},
725         {"glGetVertexAttribPointerv", (void **) &qglGetVertexAttribPointerv},
726         {NULL, NULL}
727 };
728
729 static dllfunction_t vbofuncs[] =
730 {
731         {"glBindBufferARB"    , (void **) &qglBindBufferARB},
732         {"glDeleteBuffersARB" , (void **) &qglDeleteBuffersARB},
733         {"glGenBuffersARB"    , (void **) &qglGenBuffersARB},
734         {"glIsBufferARB"      , (void **) &qglIsBufferARB},
735         {"glMapBufferARB"     , (void **) &qglMapBufferARB},
736         {"glUnmapBufferARB"   , (void **) &qglUnmapBufferARB},
737         {"glBufferDataARB"    , (void **) &qglBufferDataARB},
738         {"glBufferSubDataARB" , (void **) &qglBufferSubDataARB},
739         {NULL, NULL}
740 };
741
742 static dllfunction_t fbofuncs[] =
743 {
744         {"glIsRenderbufferEXT"                      , (void **) &qglIsRenderbufferEXT},
745         {"glBindRenderbufferEXT"                    , (void **) &qglBindRenderbufferEXT},
746         {"glDeleteRenderbuffersEXT"                 , (void **) &qglDeleteRenderbuffersEXT},
747         {"glGenRenderbuffersEXT"                    , (void **) &qglGenRenderbuffersEXT},
748         {"glRenderbufferStorageEXT"                 , (void **) &qglRenderbufferStorageEXT},
749         {"glGetRenderbufferParameterivEXT"          , (void **) &qglGetRenderbufferParameterivEXT},
750         {"glIsFramebufferEXT"                       , (void **) &qglIsFramebufferEXT},
751         {"glBindFramebufferEXT"                     , (void **) &qglBindFramebufferEXT},
752         {"glDeleteFramebuffersEXT"                  , (void **) &qglDeleteFramebuffersEXT},
753         {"glGenFramebuffersEXT"                     , (void **) &qglGenFramebuffersEXT},
754         {"glCheckFramebufferStatusEXT"              , (void **) &qglCheckFramebufferStatusEXT},
755 //      {"glFramebufferTexture1DEXT"                , (void **) &qglFramebufferTexture1DEXT},
756         {"glFramebufferTexture2DEXT"                , (void **) &qglFramebufferTexture2DEXT},
757         {"glFramebufferTexture3DEXT"                , (void **) &qglFramebufferTexture3DEXT},
758         {"glFramebufferRenderbufferEXT"             , (void **) &qglFramebufferRenderbufferEXT},
759         {"glGetFramebufferAttachmentParameterivEXT" , (void **) &qglGetFramebufferAttachmentParameterivEXT},
760         {"glGenerateMipmapEXT"                      , (void **) &qglGenerateMipmapEXT},
761         {NULL, NULL}
762 };
763
764 static dllfunction_t texturecompressionfuncs[] =
765 {
766         {"glCompressedTexImage3DARB",    (void **) &qglCompressedTexImage3DARB},
767         {"glCompressedTexImage2DARB",    (void **) &qglCompressedTexImage2DARB},
768 //      {"glCompressedTexImage1DARB",    (void **) &qglCompressedTexImage1DARB},
769         {"glCompressedTexSubImage3DARB", (void **) &qglCompressedTexSubImage3DARB},
770         {"glCompressedTexSubImage2DARB", (void **) &qglCompressedTexSubImage2DARB},
771 //      {"glCompressedTexSubImage1DARB", (void **) &qglCompressedTexSubImage1DARB},
772         {"glGetCompressedTexImageARB",   (void **) &qglGetCompressedTexImageARB},
773         {NULL, NULL}
774 };
775
776 static dllfunction_t occlusionqueryfuncs[] =
777 {
778         {"glGenQueriesARB",              (void **) &qglGenQueriesARB},
779         {"glDeleteQueriesARB",           (void **) &qglDeleteQueriesARB},
780         {"glIsQueryARB",                 (void **) &qglIsQueryARB},
781         {"glBeginQueryARB",              (void **) &qglBeginQueryARB},
782         {"glEndQueryARB",                (void **) &qglEndQueryARB},
783         {"glGetQueryivARB",              (void **) &qglGetQueryivARB},
784         {"glGetQueryObjectivARB",        (void **) &qglGetQueryObjectivARB},
785         {"glGetQueryObjectuivARB",       (void **) &qglGetQueryObjectuivARB},
786         {NULL, NULL}
787 };
788
789 static dllfunction_t drawbuffersfuncs[] =
790 {
791         {"glDrawBuffersARB",             (void **) &qglDrawBuffersARB},
792         {NULL, NULL}
793 };
794
795 void VID_ClearExtensions(void)
796 {
797         // VorteX: reset extensions info cvar, it got filled by GL_CheckExtension
798         Cvar_SetQuick(&gl_info_extensions, "");
799
800         // clear the extension flags
801         memset(&vid.support, 0, sizeof(vid.support));
802         vid.renderpath = RENDERPATH_GL11;
803         vid.useinterleavedarrays = false;
804         vid.forcevbo = false;
805         vid.maxtexturesize_2d = 0;
806         vid.maxtexturesize_3d = 0;
807         vid.maxtexturesize_cubemap = 0;
808         vid.texunits = 1;
809         vid.teximageunits = 1;
810         vid.texarrayunits = 1;
811         vid.max_anisotropy = 1;
812         vid.maxdrawbuffers = 1;
813
814         // this is a complete list of all functions that are directly checked in the renderer
815         qglDrawRangeElements = NULL;
816         qglDrawBuffer = NULL;
817         qglPolygonStipple = NULL;
818         qglFlush = NULL;
819         qglActiveTexture = NULL;
820         qglGetCompressedTexImageARB = NULL;
821         qglFramebufferTexture2DEXT = NULL;
822         qglDrawBuffersARB = NULL;
823 }
824
825 void VID_CheckExtensions(void)
826 {
827         if (!GL_CheckExtension("1.1", opengl110funcs, NULL, false))
828                 Sys_Error("OpenGL 1.1.0 functions not found");
829         vid.support.gl20shaders = GL_CheckExtension("2.0", gl20shaderfuncs, "-noshaders", false);
830
831         CHECKGLERROR
832
833         Con_DPrint("Checking OpenGL extensions...\n");
834
835         vid.support.amd_texture_texture4 = GL_CheckExtension("GL_AMD_texture_texture4", NULL, "-notexture4", false);
836         vid.support.arb_depth_texture = GL_CheckExtension("GL_ARB_depth_texture", NULL, "-nodepthtexture", false);
837         vid.support.arb_draw_buffers = GL_CheckExtension("GL_ARB_draw_buffers", drawbuffersfuncs, "-nodrawbuffers", false);
838         vid.support.arb_multitexture = GL_CheckExtension("GL_ARB_multitexture", multitexturefuncs, "-nomtex", false);
839         vid.support.arb_occlusion_query = GL_CheckExtension("GL_ARB_occlusion_query", occlusionqueryfuncs, "-noocclusionquery", false);
840         vid.support.arb_shadow = GL_CheckExtension("GL_ARB_shadow", NULL, "-noshadow", false);
841         vid.support.arb_texture_compression = GL_CheckExtension("GL_ARB_texture_compression", texturecompressionfuncs, "-notexturecompression", false);
842         vid.support.arb_texture_cube_map = GL_CheckExtension("GL_ARB_texture_cube_map", NULL, "-nocubemap", false);
843         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);
844         vid.support.arb_texture_gather = GL_CheckExtension("GL_ARB_texture_gather", NULL, "-notexturegather", false);
845         vid.support.arb_texture_non_power_of_two = GL_CheckExtension("GL_ARB_texture_non_power_of_two", NULL, "-notexturenonpoweroftwo", false);
846         vid.support.arb_vertex_buffer_object = GL_CheckExtension("GL_ARB_vertex_buffer_object", vbofuncs, "-novbo", false);
847         vid.support.ati_separate_stencil = GL_CheckExtension("2.0", gl2separatestencilfuncs, "-noseparatestencil", true) || GL_CheckExtension("GL_ATI_separate_stencil", atiseparatestencilfuncs, "-noseparatestencil", false);
848         vid.support.ext_blend_minmax = GL_CheckExtension("GL_EXT_blend_minmax", blendequationfuncs, "-noblendminmax", false);
849         vid.support.ext_blend_subtract = GL_CheckExtension("GL_EXT_blend_subtract", blendequationfuncs, "-noblendsubtract", false);
850         vid.support.ext_draw_range_elements = GL_CheckExtension("1.2", drawrangeelementsfuncs, "-nodrawrangeelements", true) || GL_CheckExtension("GL_EXT_draw_range_elements", drawrangeelementsextfuncs, "-nodrawrangeelements", false);
851         vid.support.ext_framebuffer_object = GL_CheckExtension("GL_EXT_framebuffer_object", fbofuncs, "-nofbo", false);
852         vid.support.ext_stencil_two_side = GL_CheckExtension("GL_EXT_stencil_two_side", stenciltwosidefuncs, "-nostenciltwoside", false);
853         vid.support.ext_texture_3d = GL_CheckExtension("GL_EXT_texture3D", texture3dextfuncs, "-notexture3d", false);
854         vid.support.ext_texture_compression_s3tc = GL_CheckExtension("GL_EXT_texture_compression_s3tc", NULL, "-nos3tc", false);
855         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);
856         vid.support.ext_texture_filter_anisotropic = GL_CheckExtension("GL_EXT_texture_filter_anisotropic", NULL, "-noanisotropy", false);
857 // COMMANDLINEOPTION: GL: -noshaders disables use of OpenGL 2.0 shaders (which allow pixel shader effects, can improve per pixel lighting performance and capabilities)
858 // COMMANDLINEOPTION: GL: -noanisotropy disables GL_EXT_texture_filter_anisotropic (allows higher quality texturing)
859 // COMMANDLINEOPTION: GL: -noblendminmax disables GL_EXT_blend_minmax
860 // COMMANDLINEOPTION: GL: -noblendsubtract disables GL_EXT_blend_subtract
861 // COMMANDLINEOPTION: GL: -nocombine disables GL_ARB_texture_env_combine or GL_EXT_texture_env_combine (required for bumpmapping and faster map rendering)
862 // COMMANDLINEOPTION: GL: -nocubemap disables GL_ARB_texture_cube_map (required for bumpmapping)
863 // COMMANDLINEOPTION: GL: -nodepthtexture disables use of GL_ARB_depth_texture (required for shadowmapping)
864 // COMMANDLINEOPTION: GL: -nodrawbuffers disables use of GL_ARB_draw_buffers (required for r_shadow_deferredprepass)
865 // COMMANDLINEOPTION: GL: -nodrawrangeelements disables GL_EXT_draw_range_elements (renders faster)
866 // 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)
867 // COMMANDLINEOPTION: GL: -nofbo disables GL_EXT_framebuffer_object (which accelerates rendering), only used if GL_ARB_fragment_shader is also available
868 // COMMANDLINEOPTION: GL: -nomtex disables GL_ARB_multitexture (required for faster map rendering)
869 // COMMANDLINEOPTION: GL: -noocclusionquery disables GL_ARB_occlusion_query (which allows coronas to fade according to visibility, and potentially used for rendering optimizations)
870 // COMMANDLINEOPTION: GL: -nos3tc disables GL_EXT_texture_compression_s3tc (which allows use of .dds texture caching)
871 // COMMANDLINEOPTION: GL: -noseparatestencil disables use of OpenGL2.0 glStencilOpSeparate and GL_ATI_separate_stencil extensions (which accelerate shadow rendering)
872 // COMMANDLINEOPTION: GL: -noshadow disables use of GL_ARB_shadow (required for hardware shadowmap filtering)
873 // COMMANDLINEOPTION: GL: -nostenciltwoside disables GL_EXT_stencil_two_side (which accelerate shadow rendering)
874 // COMMANDLINEOPTION: GL: -notexture3d disables GL_EXT_texture3D (required for spherical lights, otherwise they render as a column)
875 // COMMANDLINEOPTION: GL: -notexture4 disables GL_AMD_texture_texture4 (which provides fetch4 sampling)
876 // 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)
877 // COMMANDLINEOPTION: GL: -notexturegather disables GL_ARB_texture_gather (which provides fetch4 sampling)
878 // 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)
879 // COMMANDLINEOPTION: GL: -novbo disables GL_ARB_vertex_buffer_object (which accelerates rendering)
880
881         if (vid.support.arb_draw_buffers)
882                 qglGetIntegerv(GL_MAX_DRAW_BUFFERS_ARB, (GLint*)&vid.maxdrawbuffers);
883
884         // 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
885         // we detect these cards by checking if the hardware supports vertex texture fetch (Geforce6 does, Radeon X1600 does not, all GL3-class hardware does)
886         if(vid.support.arb_texture_non_power_of_two && vid.support.gl20shaders)
887         {
888                 int val = 0;
889                 qglGetIntegerv(GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &val);CHECKGLERROR
890                 if (val < 1)
891                         vid.support.arb_texture_non_power_of_two = false;
892         }
893
894         // we don't care if it's an extension or not, they are identical functions, so keep it simple in the rendering code
895         if (qglDrawRangeElements == NULL)
896                 qglDrawRangeElements = qglDrawRangeElementsEXT;
897
898         qglGetIntegerv(GL_MAX_TEXTURE_SIZE, (GLint*)&vid.maxtexturesize_2d);
899         if (vid.support.ext_texture_filter_anisotropic)
900                 qglGetIntegerv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, (GLint*)&vid.max_anisotropy);
901         if (vid.support.arb_texture_cube_map)
902                 qglGetIntegerv(GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB, (GLint*)&vid.maxtexturesize_cubemap);
903         if (vid.support.ext_texture_3d)
904                 qglGetIntegerv(GL_MAX_3D_TEXTURE_SIZE, (GLint*)&vid.maxtexturesize_3d);
905
906         // verify that 3d textures are really supported
907         if (vid.support.ext_texture_3d && vid.maxtexturesize_3d < 32)
908         {
909                 vid.support.ext_texture_3d = false;
910                 Con_Printf("GL_EXT_texture3D reported bogus GL_MAX_3D_TEXTURE_SIZE, disabled\n");
911         }
912
913         vid.texunits = vid.teximageunits = vid.texarrayunits = 1;
914         if (vid.support.arb_multitexture)
915                 qglGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, (GLint*)&vid.texunits);
916         if (vid_gl20.integer && vid.support.gl20shaders)
917         {
918                 qglGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, (GLint*)&vid.texunits);
919                 qglGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, (int *)&vid.teximageunits);CHECKGLERROR
920                 qglGetIntegerv(GL_MAX_TEXTURE_COORDS, (int *)&vid.texarrayunits);CHECKGLERROR
921                 vid.texunits = bound(4, vid.texunits, MAX_TEXTUREUNITS);
922                 vid.teximageunits = bound(16, vid.teximageunits, MAX_TEXTUREUNITS);
923                 vid.texarrayunits = bound(8, vid.texarrayunits, MAX_TEXTUREUNITS);
924                 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" : "");
925                 vid.renderpath = RENDERPATH_GL20;
926                 vid.useinterleavedarrays = false;
927         }
928         else if (vid.support.arb_texture_env_combine && vid.texunits >= 2 && vid_gl13.integer)
929         {
930                 qglGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, (GLint*)&vid.texunits);
931                 vid.texunits = bound(1, vid.texunits, MAX_TEXTUREUNITS);
932                 vid.teximageunits = vid.texunits;
933                 vid.texarrayunits = vid.texunits;
934                 Con_DPrintf("Using GL1.3 rendering path - %i texture units, single pass rendering\n", vid.texunits);
935                 vid.renderpath = RENDERPATH_GL13;
936                 vid.useinterleavedarrays = false;
937         }
938         else
939         {
940                 vid.texunits = bound(1, vid.texunits, MAX_TEXTUREUNITS);
941                 vid.teximageunits = vid.texunits;
942                 vid.texarrayunits = vid.texunits;
943                 Con_DPrintf("Using GL1.1 rendering path - %i texture units, two pass rendering\n", vid.texunits);
944                 vid.renderpath = RENDERPATH_GL11;
945                 vid.useinterleavedarrays = false;
946         }
947
948         // VorteX: set other info (maybe place them in VID_InitMode?)
949         Cvar_SetQuick(&gl_info_vendor, gl_vendor);
950         Cvar_SetQuick(&gl_info_renderer, gl_renderer);
951         Cvar_SetQuick(&gl_info_version, gl_version);
952         Cvar_SetQuick(&gl_info_platform, gl_platform ? gl_platform : "");
953         Cvar_SetQuick(&gl_info_driver, gl_driver);
954 }
955
956 void Force_CenterView_f (void)
957 {
958         cl.viewangles[PITCH] = 0;
959 }
960
961 static int gamma_forcenextframe = false;
962 static float cachegamma, cachebrightness, cachecontrast, cacheblack[3], cachegrey[3], cachewhite[3], cachecontrastboost;
963 static int cachecolorenable, cachehwgamma;
964
965 unsigned int vid_gammatables_serial = 0; // so other subsystems can poll if gamma parameters have changed
966 qboolean vid_gammatables_trivial = true;
967 void VID_BuildGammaTables(unsigned short *ramps, int rampsize)
968 {
969         if (cachecolorenable)
970         {
971                 BuildGammaTable16(1.0f, invpow(0.5, 1 - cachegrey[0]), cachewhite[0], cacheblack[0], cachecontrastboost, ramps, rampsize);
972                 BuildGammaTable16(1.0f, invpow(0.5, 1 - cachegrey[1]), cachewhite[1], cacheblack[1], cachecontrastboost, ramps + rampsize, rampsize);
973                 BuildGammaTable16(1.0f, invpow(0.5, 1 - cachegrey[2]), cachewhite[2], cacheblack[2], cachecontrastboost, ramps + rampsize*2, rampsize);
974         }
975         else
976         {
977                 BuildGammaTable16(1.0f, cachegamma, cachecontrast, cachebrightness, cachecontrastboost, ramps, rampsize);
978                 BuildGammaTable16(1.0f, cachegamma, cachecontrast, cachebrightness, cachecontrastboost, ramps + rampsize, rampsize);
979                 BuildGammaTable16(1.0f, cachegamma, cachecontrast, cachebrightness, cachecontrastboost, ramps + rampsize*2, rampsize);
980         }
981
982         // LordHavoc: this code came from Ben Winslow and Zinx Verituse, I have
983         // immensely butchered it to work with variable framerates and fit in with
984         // the rest of darkplaces.
985         if (v_psycho.integer)
986         {
987                 int x, y;
988                 float t;
989                 static float n[3], nd[3], nt[3];
990                 static int init = true;
991                 unsigned short *ramp;
992                 gamma_forcenextframe = true;
993                 if (init)
994                 {
995                         init = false;
996                         for (x = 0;x < 3;x++)
997                         {
998                                 n[x] = lhrandom(0, 1);
999                                 nd[x] = (rand()&1)?-0.25:0.25;
1000                                 nt[x] = lhrandom(1, 8.2);
1001                         }
1002                 }
1003
1004                 for (x = 0;x < 3;x++)
1005                 {
1006                         nt[x] -= cl.realframetime;
1007                         if (nt[x] < 0)
1008                         {
1009                                 nd[x] = -nd[x];
1010                                 nt[x] += lhrandom(1, 8.2);
1011                         }
1012                         n[x] += nd[x] * cl.realframetime;
1013                         n[x] -= floor(n[x]);
1014                 }
1015
1016                 for (x = 0, ramp = ramps;x < 3;x++)
1017                         for (y = 0, t = n[x] - 0.75f;y < rampsize;y++, t += 0.75f * (2.0f / rampsize))
1018                                 *ramp++ = (unsigned short)(cos(t*(M_PI*2.0)) * 32767.0f + 32767.0f);
1019         }
1020 }
1021
1022 void VID_UpdateGamma(qboolean force, int rampsize)
1023 {
1024         cvar_t *c;
1025         float f;
1026         int wantgamma;
1027         qboolean gamma_changed = false;
1028
1029         // LordHavoc: don't mess with gamma tables if running dedicated
1030         if (cls.state == ca_dedicated)
1031                 return;
1032
1033         wantgamma = v_hwgamma.integer;
1034         switch(vid.renderpath)
1035         {
1036         case RENDERPATH_GL20:
1037         case RENDERPATH_D3D9:
1038         case RENDERPATH_D3D10:
1039         case RENDERPATH_D3D11:
1040         case RENDERPATH_SOFT:
1041         case RENDERPATH_GLES2:
1042                 if (v_glslgamma.integer)
1043                         wantgamma = 0;
1044                 break;
1045         case RENDERPATH_GL13:
1046         case RENDERPATH_GL11:
1047                 break;
1048         }
1049         if(!vid_activewindow)
1050                 wantgamma = 0;
1051 #define BOUNDCVAR(cvar, m1, m2) c = &(cvar);f = bound(m1, c->value, m2);if (c->value != f) Cvar_SetValueQuick(c, f);
1052         BOUNDCVAR(v_gamma, 0.1, 5);
1053         BOUNDCVAR(v_contrast, 1, 5);
1054         BOUNDCVAR(v_brightness, 0, 0.8);
1055         //BOUNDCVAR(v_contrastboost, 0.0625, 16);
1056         BOUNDCVAR(v_color_black_r, 0, 0.8);
1057         BOUNDCVAR(v_color_black_g, 0, 0.8);
1058         BOUNDCVAR(v_color_black_b, 0, 0.8);
1059         BOUNDCVAR(v_color_grey_r, 0, 0.95);
1060         BOUNDCVAR(v_color_grey_g, 0, 0.95);
1061         BOUNDCVAR(v_color_grey_b, 0, 0.95);
1062         BOUNDCVAR(v_color_white_r, 1, 5);
1063         BOUNDCVAR(v_color_white_g, 1, 5);
1064         BOUNDCVAR(v_color_white_b, 1, 5);
1065 #undef BOUNDCVAR
1066
1067         // set vid_gammatables_trivial to true if the current settings would generate the identity gamma table
1068         vid_gammatables_trivial = false;
1069         if(v_psycho.integer == 0)
1070         if(v_contrastboost.value == 1)
1071         {
1072                 if(v_color_enable.integer)
1073                 {
1074                         if(v_color_black_r.value == 0)
1075                         if(v_color_black_g.value == 0)
1076                         if(v_color_black_b.value == 0)
1077                         if(fabs(v_color_grey_r.value - 0.5) < 1e-6)
1078                         if(fabs(v_color_grey_g.value - 0.5) < 1e-6)
1079                         if(fabs(v_color_grey_b.value - 0.5) < 1e-6)
1080                         if(v_color_white_r.value == 1)
1081                         if(v_color_white_g.value == 1)
1082                         if(v_color_white_b.value == 1)
1083                                 vid_gammatables_trivial = true;
1084                 }
1085                 else
1086                 {
1087                         if(v_gamma.value == 1)
1088                         if(v_contrast.value == 1)
1089                         if(v_brightness.value == 0)
1090                                 vid_gammatables_trivial = true;
1091                 }
1092         }
1093
1094 #define GAMMACHECK(cache, value) if (cache != (value)) gamma_changed = true;cache = (value)
1095         if(v_psycho.integer)
1096                 gamma_changed = true;
1097         GAMMACHECK(cachegamma      , v_gamma.value);
1098         GAMMACHECK(cachecontrast   , v_contrast.value);
1099         GAMMACHECK(cachebrightness , v_brightness.value);
1100         GAMMACHECK(cachecontrastboost, v_contrastboost.value);
1101         GAMMACHECK(cachecolorenable, v_color_enable.integer);
1102         GAMMACHECK(cacheblack[0]   , v_color_black_r.value);
1103         GAMMACHECK(cacheblack[1]   , v_color_black_g.value);
1104         GAMMACHECK(cacheblack[2]   , v_color_black_b.value);
1105         GAMMACHECK(cachegrey[0]    , v_color_grey_r.value);
1106         GAMMACHECK(cachegrey[1]    , v_color_grey_g.value);
1107         GAMMACHECK(cachegrey[2]    , v_color_grey_b.value);
1108         GAMMACHECK(cachewhite[0]   , v_color_white_r.value);
1109         GAMMACHECK(cachewhite[1]   , v_color_white_g.value);
1110         GAMMACHECK(cachewhite[2]   , v_color_white_b.value);
1111
1112         if(gamma_changed)
1113                 ++vid_gammatables_serial;
1114
1115         GAMMACHECK(cachehwgamma    , wantgamma);
1116 #undef GAMMACHECK
1117
1118         if (!force && !gamma_forcenextframe && !gamma_changed)
1119                 return;
1120
1121         gamma_forcenextframe = false;
1122
1123         if (cachehwgamma)
1124         {
1125                 if (!vid_usinghwgamma)
1126                 {
1127                         vid_usinghwgamma = true;
1128                         if (vid_gammarampsize != rampsize || !vid_gammaramps)
1129                         {
1130                                 vid_gammarampsize = rampsize;
1131                                 if (vid_gammaramps)
1132                                         Z_Free(vid_gammaramps);
1133                                 vid_gammaramps = (unsigned short *)Z_Malloc(6 * vid_gammarampsize * sizeof(unsigned short));
1134                                 vid_systemgammaramps = vid_gammaramps + 3 * vid_gammarampsize;
1135                         }
1136                         VID_GetGamma(vid_systemgammaramps, vid_gammarampsize);
1137                 }
1138
1139                 VID_BuildGammaTables(vid_gammaramps, vid_gammarampsize);
1140
1141                 // set vid_hardwaregammasupported to true if VID_SetGamma succeeds, OR if vid_hwgamma is >= 2 (forced gamma - ignores driver return value)
1142                 Cvar_SetValueQuick(&vid_hardwaregammasupported, VID_SetGamma(vid_gammaramps, vid_gammarampsize) || cachehwgamma >= 2);
1143                 // if custom gamma ramps failed (Windows stupidity), restore to system gamma
1144                 if(!vid_hardwaregammasupported.integer)
1145                 {
1146                         if (vid_usinghwgamma)
1147                         {
1148                                 vid_usinghwgamma = false;
1149                                 VID_SetGamma(vid_systemgammaramps, vid_gammarampsize);
1150                         }
1151                 }
1152         }
1153         else
1154         {
1155                 if (vid_usinghwgamma)
1156                 {
1157                         vid_usinghwgamma = false;
1158                         VID_SetGamma(vid_systemgammaramps, vid_gammarampsize);
1159                 }
1160         }
1161 }
1162
1163 void VID_RestoreSystemGamma(void)
1164 {
1165         if (vid_usinghwgamma)
1166         {
1167                 vid_usinghwgamma = false;
1168                 Cvar_SetValueQuick(&vid_hardwaregammasupported, VID_SetGamma(vid_systemgammaramps, vid_gammarampsize));
1169                 // force gamma situation to be reexamined next frame
1170                 gamma_forcenextframe = true;
1171         }
1172 }
1173
1174 void VID_Shared_Init(void)
1175 {
1176         Cvar_RegisterVariable(&vid_hardwaregammasupported);
1177         Cvar_RegisterVariable(&gl_info_vendor);
1178         Cvar_RegisterVariable(&gl_info_renderer);
1179         Cvar_RegisterVariable(&gl_info_version);
1180         Cvar_RegisterVariable(&gl_info_extensions);
1181         Cvar_RegisterVariable(&gl_info_platform);
1182         Cvar_RegisterVariable(&gl_info_driver);
1183         Cvar_RegisterVariable(&v_gamma);
1184         Cvar_RegisterVariable(&v_brightness);
1185         Cvar_RegisterVariable(&v_contrastboost);
1186         Cvar_RegisterVariable(&v_contrast);
1187
1188         Cvar_RegisterVariable(&v_color_enable);
1189         Cvar_RegisterVariable(&v_color_black_r);
1190         Cvar_RegisterVariable(&v_color_black_g);
1191         Cvar_RegisterVariable(&v_color_black_b);
1192         Cvar_RegisterVariable(&v_color_grey_r);
1193         Cvar_RegisterVariable(&v_color_grey_g);
1194         Cvar_RegisterVariable(&v_color_grey_b);
1195         Cvar_RegisterVariable(&v_color_white_r);
1196         Cvar_RegisterVariable(&v_color_white_g);
1197         Cvar_RegisterVariable(&v_color_white_b);
1198
1199         Cvar_RegisterVariable(&v_hwgamma);
1200         Cvar_RegisterVariable(&v_glslgamma);
1201
1202         Cvar_RegisterVariable(&v_psycho);
1203
1204         Cvar_RegisterVariable(&vid_fullscreen);
1205         Cvar_RegisterVariable(&vid_width);
1206         Cvar_RegisterVariable(&vid_height);
1207         Cvar_RegisterVariable(&vid_bitsperpixel);
1208         Cvar_RegisterVariable(&vid_samples);
1209         Cvar_RegisterVariable(&vid_refreshrate);
1210         Cvar_RegisterVariable(&vid_userefreshrate);
1211         Cvar_RegisterVariable(&vid_stereobuffer);
1212         Cvar_RegisterVariable(&vid_vsync);
1213         Cvar_RegisterVariable(&vid_mouse);
1214         Cvar_RegisterVariable(&vid_grabkeyboard);
1215         Cvar_RegisterVariable(&vid_touchscreen);
1216         Cvar_RegisterVariable(&vid_stick_mouse);
1217         Cvar_RegisterVariable(&vid_resizable);
1218         Cvar_RegisterVariable(&vid_minwidth);
1219         Cvar_RegisterVariable(&vid_minheight);
1220         Cvar_RegisterVariable(&vid_gl13);
1221         Cvar_RegisterVariable(&vid_gl20);
1222         Cvar_RegisterVariable(&gl_finish);
1223         Cmd_AddCommand("force_centerview", Force_CenterView_f, "recenters view (stops looking up/down)");
1224         Cmd_AddCommand("vid_restart", VID_Restart_f, "restarts video system (closes and reopens the window, restarts renderer)");
1225 }
1226
1227 int VID_Mode(int fullscreen, int width, int height, int bpp, float refreshrate, int stereobuffer, int samples)
1228 {
1229         viddef_mode_t mode;
1230         memset(&mode, 0, sizeof(mode));
1231         mode.fullscreen = fullscreen != 0;
1232         mode.width = width;
1233         mode.height = height;
1234         mode.bitsperpixel = bpp;
1235         mode.refreshrate = vid_userefreshrate.integer ? max(1, refreshrate) : 0;
1236         mode.userefreshrate = vid_userefreshrate.integer != 0;
1237         mode.stereobuffer = stereobuffer != 0;
1238         mode.samples = samples;
1239         cl_ignoremousemoves = 2;
1240         VID_ClearExtensions();
1241         if (VID_InitMode(&mode))
1242         {
1243                 // accept the (possibly modified) mode
1244                 vid.mode = mode;
1245                 vid.fullscreen     = vid.mode.fullscreen;
1246                 vid.width          = vid.mode.width;
1247                 vid.height         = vid.mode.height;
1248                 vid.bitsperpixel   = vid.mode.bitsperpixel;
1249                 vid.refreshrate    = vid.mode.refreshrate;
1250                 vid.userefreshrate = vid.mode.userefreshrate;
1251                 vid.stereobuffer   = vid.mode.stereobuffer;
1252                 vid.samples        = vid.mode.samples;
1253                 vid.stencil        = vid.mode.bitsperpixel > 16;
1254                 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) : "");
1255
1256                 Cvar_SetValueQuick(&vid_fullscreen, vid.mode.fullscreen);
1257                 Cvar_SetValueQuick(&vid_width, vid.mode.width);
1258                 Cvar_SetValueQuick(&vid_height, vid.mode.height);
1259                 Cvar_SetValueQuick(&vid_bitsperpixel, vid.mode.bitsperpixel);
1260                 Cvar_SetValueQuick(&vid_samples, vid.mode.samples);
1261                 if(vid_userefreshrate.integer)
1262                         Cvar_SetValueQuick(&vid_refreshrate, vid.mode.refreshrate);
1263                 Cvar_SetValueQuick(&vid_stereobuffer, vid.mode.stereobuffer);
1264
1265                 return true;
1266         }
1267         else
1268                 return false;
1269 }
1270
1271 static void VID_OpenSystems(void)
1272 {
1273         R_Modules_Start();
1274         S_Startup();
1275 }
1276
1277 static void VID_CloseSystems(void)
1278 {
1279         S_Shutdown();
1280         R_Modules_Shutdown();
1281 }
1282
1283 qboolean vid_commandlinecheck = true;
1284 extern qboolean vid_opened;
1285
1286 void VID_Restart_f(void)
1287 {
1288         // don't crash if video hasn't started yet
1289         if (vid_commandlinecheck)
1290                 return;
1291
1292         if (!vid_opened)
1293         {
1294                 SCR_BeginLoadingPlaque();
1295                 return;
1296         }
1297
1298         Con_Printf("VID_Restart: changing from %s %dx%dx%dbpp%s%s, to %s %dx%dx%dbpp%s%s.\n",
1299                 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) : "",
1300                 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) : "");
1301         VID_CloseSystems();
1302         VID_Shutdown();
1303         if (!VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_refreshrate.value, vid_stereobuffer.integer, vid_samples.integer))
1304         {
1305                 Con_Print("Video mode change failed\n");
1306                 if (!VID_Mode(vid.mode.fullscreen, vid.mode.width, vid.mode.height, vid.mode.bitsperpixel, vid.mode.refreshrate, vid.mode.stereobuffer, vid.mode.samples))
1307                         Sys_Error("Unable to restore to last working video mode");
1308         }
1309         VID_OpenSystems();
1310 }
1311
1312 const char *vidfallbacks[][2] =
1313 {
1314         {"vid_stereobuffer", "0"},
1315         {"vid_samples", "1"},
1316         {"vid_userefreshrate", "0"},
1317         {"vid_width", "640"},
1318         {"vid_height", "480"},
1319         {"vid_bitsperpixel", "16"},
1320         {NULL, NULL}
1321 };
1322
1323 // this is only called once by Host_StartVideo and again on each FS_GameDir_f
1324 void VID_Start(void)
1325 {
1326         int i, width, height, success;
1327         if (vid_commandlinecheck)
1328         {
1329                 // interpret command-line parameters
1330                 vid_commandlinecheck = false;
1331 // COMMANDLINEOPTION: Video: -window performs +vid_fullscreen 0
1332                 if (COM_CheckParm("-window") || COM_CheckParm("-safe"))
1333                         Cvar_SetValueQuick(&vid_fullscreen, false);
1334 // COMMANDLINEOPTION: Video: -fullscreen performs +vid_fullscreen 1
1335                 if (COM_CheckParm("-fullscreen"))
1336                         Cvar_SetValueQuick(&vid_fullscreen, true);
1337                 width = 0;
1338                 height = 0;
1339 // 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)
1340                 if ((i = COM_CheckParm("-width")) != 0)
1341                         width = atoi(com_argv[i+1]);
1342 // 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)
1343                 if ((i = COM_CheckParm("-height")) != 0)
1344                         height = atoi(com_argv[i+1]);
1345                 if (width == 0)
1346                         width = height * 4 / 3;
1347                 if (height == 0)
1348                         height = width * 3 / 4;
1349                 if (width)
1350                         Cvar_SetValueQuick(&vid_width, width);
1351                 if (height)
1352                         Cvar_SetValueQuick(&vid_height, height);
1353 // COMMANDLINEOPTION: Video: -bpp <bits> performs +vid_bitsperpixel <bits> (example -bpp 32 or -bpp 16)
1354                 if ((i = COM_CheckParm("-bpp")) != 0)
1355                         Cvar_SetQuick(&vid_bitsperpixel, com_argv[i+1]);
1356         }
1357
1358         success = VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_refreshrate.value, vid_stereobuffer.integer, vid_samples.integer);
1359         if (!success)
1360         {
1361                 Con_Print("Desired video mode fail, trying fallbacks...\n");
1362                 for (i = 0;!success && vidfallbacks[i][0] != NULL;i++)
1363                 {
1364                         Cvar_Set(vidfallbacks[i][0], vidfallbacks[i][1]);
1365                         success = VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_refreshrate.value, vid_stereobuffer.integer, vid_samples.integer);
1366                 }
1367                 if (!success)
1368                         Sys_Error("Video modes failed");
1369         }
1370         VID_OpenSystems();
1371 }
1372
1373 void VID_Stop(void)
1374 {
1375         VID_CloseSystems();
1376         VID_Shutdown();
1377 }
1378
1379 int VID_SortModes_Compare(const void *a_, const void *b_)
1380 {
1381         vid_mode_t *a = (vid_mode_t *) a_;
1382         vid_mode_t *b = (vid_mode_t *) b_;
1383         if(a->width > b->width)
1384                 return +1;
1385         if(a->width < b->width)
1386                 return -1;
1387         if(a->height > b->height)
1388                 return +1;
1389         if(a->height < b->height)
1390                 return -1;
1391         if(a->refreshrate > b->refreshrate)
1392                 return +1;
1393         if(a->refreshrate < b->refreshrate)
1394                 return -1;
1395         if(a->bpp > b->bpp)
1396                 return +1;
1397         if(a->bpp < b->bpp)
1398                 return -1;
1399         if(a->pixelheight_num * b->pixelheight_denom > a->pixelheight_denom * b->pixelheight_num)
1400                 return +1;
1401         if(a->pixelheight_num * b->pixelheight_denom < a->pixelheight_denom * b->pixelheight_num)
1402                 return -1;
1403         return 0;
1404 }
1405 size_t VID_SortModes(vid_mode_t *modes, size_t count, qboolean usebpp, qboolean userefreshrate, qboolean useaspect)
1406 {
1407         size_t i;
1408         if(count == 0)
1409                 return 0;
1410         // 1. sort them
1411         qsort(modes, count, sizeof(*modes), VID_SortModes_Compare);
1412         // 2. remove duplicates
1413         for(i = 0; i < count; ++i)
1414         {
1415                 if(modes[i].width && modes[i].height)
1416                 {
1417                         if(i == 0)
1418                                 continue;
1419                         if(modes[i].width != modes[i-1].width)
1420                                 continue;
1421                         if(modes[i].height != modes[i-1].height)
1422                                 continue;
1423                         if(userefreshrate)
1424                                 if(modes[i].refreshrate != modes[i-1].refreshrate)
1425                                         continue;
1426                         if(usebpp)
1427                                 if(modes[i].bpp != modes[i-1].bpp)
1428                                         continue;
1429                         if(useaspect)
1430                                 if(modes[i].pixelheight_num * modes[i-1].pixelheight_denom != modes[i].pixelheight_denom * modes[i-1].pixelheight_num)
1431                                         continue;
1432                 }
1433                 // a dupe, or a bogus mode!
1434                 if(i < count-1)
1435                         memmove(&modes[i], &modes[i+1], sizeof(*modes) * (count-1 - i));
1436                 --i; // check this index again, as mode i+1 is now here
1437                 --count;
1438         }
1439         return count;
1440 }