]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - gl_backend.c
more cleaning of matrix4x4_t struct access
[xonotic/darkplaces.git] / gl_backend.c
1
2 #include "quakedef.h"
3 #include "cl_collision.h"
4
5 cvar_t gl_mesh_drawrangeelements = {0, "gl_mesh_drawrangeelements", "1", "use glDrawRangeElements function if available instead of glDrawElements (for performance comparisons or bug testing)"};
6 cvar_t gl_mesh_testarrayelement = {0, "gl_mesh_testarrayelement", "0", "use glBegin(GL_TRIANGLES);glArrayElement();glEnd(); primitives instead of glDrawElements (useful to test for driver bugs with glDrawElements)"};
7 cvar_t gl_mesh_testmanualfeeding = {0, "gl_mesh_testmanualfeeding", "0", "use glBegin(GL_TRIANGLES);glTexCoord2f();glVertex3f();glEnd(); primitives instead of glDrawElements (useful to test for driver bugs with glDrawElements)"};
8 cvar_t gl_paranoid = {0, "gl_paranoid", "0", "enables OpenGL error checking and other tests"};
9 cvar_t gl_printcheckerror = {0, "gl_printcheckerror", "0", "prints all OpenGL error checks, useful to identify location of driver crashes"};
10
11 cvar_t r_render = {0, "r_render", "1", "enables rendering calls (you want this on!)"};
12 cvar_t r_waterwarp = {CVAR_SAVE, "r_waterwarp", "1", "warp view while underwater"};
13 cvar_t gl_polyblend = {CVAR_SAVE, "gl_polyblend", "1", "tints view while underwater, hurt, etc"};
14 cvar_t gl_dither = {CVAR_SAVE, "gl_dither", "1", "enables OpenGL dithering (16bit looks bad with this off)"};
15 cvar_t gl_lockarrays = {0, "gl_lockarrays", "1", "enables use of glLockArraysEXT, may cause glitches with some broken drivers"};
16
17 int gl_maxdrawrangeelementsvertices;
18 int gl_maxdrawrangeelementsindices;
19
20 #ifdef DEBUGGL
21 int errornumber = 0;
22
23 void GL_PrintError(int errornumber, char *filename, int linenumber)
24 {
25         switch(errornumber)
26         {
27 #ifdef GL_INVALID_ENUM
28         case GL_INVALID_ENUM:
29                 Con_Printf("GL_INVALID_ENUM at %s:%i\n", filename, linenumber);
30                 break;
31 #endif
32 #ifdef GL_INVALID_VALUE
33         case GL_INVALID_VALUE:
34                 Con_Printf("GL_INVALID_VALUE at %s:%i\n", filename, linenumber);
35                 break;
36 #endif
37 #ifdef GL_INVALID_OPERATION
38         case GL_INVALID_OPERATION:
39                 Con_Printf("GL_INVALID_OPERATION at %s:%i\n", filename, linenumber);
40                 break;
41 #endif
42 #ifdef GL_STACK_OVERFLOW
43         case GL_STACK_OVERFLOW:
44                 Con_Printf("GL_STACK_OVERFLOW at %s:%i\n", filename, linenumber);
45                 break;
46 #endif
47 #ifdef GL_STACK_UNDERFLOW
48         case GL_STACK_UNDERFLOW:
49                 Con_Printf("GL_STACK_UNDERFLOW at %s:%i\n", filename, linenumber);
50                 break;
51 #endif
52 #ifdef GL_OUT_OF_MEMORY
53         case GL_OUT_OF_MEMORY:
54                 Con_Printf("GL_OUT_OF_MEMORY at %s:%i\n", filename, linenumber);
55                 break;
56 #endif
57 #ifdef GL_TABLE_TOO_LARGE
58         case GL_TABLE_TOO_LARGE:
59                 Con_Printf("GL_TABLE_TOO_LARGE at %s:%i\n", filename, linenumber);
60                 break;
61 #endif
62         default:
63                 Con_Printf("GL UNKNOWN (%i) at %s:%i\n", errornumber, filename, linenumber);
64                 break;
65         }
66 }
67 #endif
68
69 #define BACKENDACTIVECHECK if (!backendactive) Sys_Error("GL backend function called when backend is not active");
70
71 void SCR_ScreenShot_f (void);
72
73 static matrix4x4_t backend_viewmatrix;
74 static matrix4x4_t backend_modelmatrix;
75 static matrix4x4_t backend_modelviewmatrix;
76 static matrix4x4_t backend_projectmatrix;
77
78 static unsigned int backendunits, backendimageunits, backendarrayunits, backendactive;
79
80 /*
81 note: here's strip order for a terrain row:
82 0--1--2--3--4
83 |\ |\ |\ |\ |
84 | \| \| \| \|
85 A--B--C--D--E
86 clockwise
87
88 A0B, 01B, B1C, 12C, C2D, 23D, D3E, 34E
89
90 *elements++ = i + row;
91 *elements++ = i;
92 *elements++ = i + row + 1;
93 *elements++ = i;
94 *elements++ = i + 1;
95 *elements++ = i + row + 1;
96
97
98 for (y = 0;y < rows - 1;y++)
99 {
100         for (x = 0;x < columns - 1;x++)
101         {
102                 i = y * rows + x;
103                 *elements++ = i + columns;
104                 *elements++ = i;
105                 *elements++ = i + columns + 1;
106                 *elements++ = i;
107                 *elements++ = i + 1;
108                 *elements++ = i + columns + 1;
109         }
110 }
111
112 alternative:
113 0--1--2--3--4
114 | /| /|\ | /|
115 |/ |/ | \|/ |
116 A--B--C--D--E
117 counterclockwise
118
119 for (y = 0;y < rows - 1;y++)
120 {
121         for (x = 0;x < columns - 1;x++)
122         {
123                 i = y * rows + x;
124                 *elements++ = i;
125                 *elements++ = i + columns;
126                 *elements++ = i + columns + 1;
127                 *elements++ = i + columns;
128                 *elements++ = i + columns + 1;
129                 *elements++ = i + 1;
130         }
131 }
132 */
133
134 int polygonelements[(POLYGONELEMENTS_MAXPOINTS-2)*3];
135 int quadelements[QUADELEMENTS_MAXQUADS*6];
136
137 void GL_Backend_AllocArrays(void)
138 {
139 }
140
141 void GL_Backend_FreeArrays(void)
142 {
143 }
144
145 static void gl_backend_start(void)
146 {
147         Con_Print("OpenGL Backend starting...\n");
148         CHECKGLERROR
149
150         if (qglDrawRangeElements != NULL)
151         {
152                 CHECKGLERROR
153                 qglGetIntegerv(GL_MAX_ELEMENTS_VERTICES, &gl_maxdrawrangeelementsvertices);
154                 CHECKGLERROR
155                 qglGetIntegerv(GL_MAX_ELEMENTS_INDICES, &gl_maxdrawrangeelementsindices);
156                 CHECKGLERROR
157                 Con_Printf("glDrawRangeElements detected (max vertices %i, max indices %i)\n", gl_maxdrawrangeelementsvertices, gl_maxdrawrangeelementsindices);
158         }
159
160         backendunits = min(MAX_TEXTUREUNITS, gl_textureunits);
161         backendimageunits = backendunits;
162         backendarrayunits = backendunits;
163         if (gl_support_fragment_shader)
164         {
165                 CHECKGLERROR
166                 qglGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS_ARB, (int *)&backendimageunits);
167                 CHECKGLERROR
168                 qglGetIntegerv(GL_MAX_TEXTURE_COORDS_ARB, (int *)&backendarrayunits);
169                 CHECKGLERROR
170                 Con_Printf("GLSL shader support detected: texture units = %i texenv, %i image, %i array\n", backendunits, backendimageunits, backendarrayunits);
171         }
172         else if (backendunits > 1)
173                 Con_Printf("multitexture detected: texture units = %i\n", backendunits);
174         else
175                 Con_Printf("singletexture\n");
176
177         GL_Backend_AllocArrays();
178
179         Con_Printf("OpenGL backend started.\n");
180
181         CHECKGLERROR
182
183         backendactive = true;
184 }
185
186 static void gl_backend_shutdown(void)
187 {
188         backendunits = 0;
189         backendimageunits = 0;
190         backendarrayunits = 0;
191         backendactive = false;
192
193         Con_Print("OpenGL Backend shutting down\n");
194
195         GL_Backend_FreeArrays();
196 }
197
198 static void gl_backend_newmap(void)
199 {
200 }
201
202 void gl_backend_init(void)
203 {
204         int i;
205
206         for (i = 0;i < POLYGONELEMENTS_MAXPOINTS - 2;i++)
207         {
208                 polygonelements[i * 3 + 0] = 0;
209                 polygonelements[i * 3 + 1] = i + 1;
210                 polygonelements[i * 3 + 2] = i + 2;
211         }
212         // elements for rendering a series of quads as triangles
213         for (i = 0;i < QUADELEMENTS_MAXQUADS;i++)
214         {
215                 quadelements[i * 6 + 0] = i * 4;
216                 quadelements[i * 6 + 1] = i * 4 + 1;
217                 quadelements[i * 6 + 2] = i * 4 + 2;
218                 quadelements[i * 6 + 3] = i * 4;
219                 quadelements[i * 6 + 4] = i * 4 + 2;
220                 quadelements[i * 6 + 5] = i * 4 + 3;
221         }
222
223         Cvar_RegisterVariable(&r_render);
224         Cvar_RegisterVariable(&r_waterwarp);
225         Cvar_RegisterVariable(&gl_polyblend);
226         Cvar_RegisterVariable(&gl_dither);
227         Cvar_RegisterVariable(&gl_lockarrays);
228         Cvar_RegisterVariable(&gl_paranoid);
229         Cvar_RegisterVariable(&gl_printcheckerror);
230 #ifdef NORENDER
231         Cvar_SetValue("r_render", 0);
232 #endif
233
234         Cvar_RegisterVariable(&gl_mesh_drawrangeelements);
235         Cvar_RegisterVariable(&gl_mesh_testarrayelement);
236         Cvar_RegisterVariable(&gl_mesh_testmanualfeeding);
237
238         R_RegisterModule("GL_Backend", gl_backend_start, gl_backend_shutdown, gl_backend_newmap);
239 }
240
241 void GL_SetupView_Orientation_Identity (void)
242 {
243         backend_viewmatrix = identitymatrix;
244         memset(&backend_modelmatrix, 0, sizeof(backend_modelmatrix));
245 }
246
247 void GL_SetupView_Orientation_FromEntity(matrix4x4_t *matrix)
248 {
249         matrix4x4_t tempmatrix, basematrix;
250         Matrix4x4_Invert_Simple(&tempmatrix, matrix);
251         Matrix4x4_CreateRotate(&basematrix, -90, 1, 0, 0);
252         Matrix4x4_ConcatRotate(&basematrix, 90, 0, 0, 1);
253         Matrix4x4_Concat(&backend_viewmatrix, &basematrix, &tempmatrix);
254         //Matrix4x4_ConcatRotate(&backend_viewmatrix, -angles[2], 1, 0, 0);
255         //Matrix4x4_ConcatRotate(&backend_viewmatrix, -angles[0], 0, 1, 0);
256         //Matrix4x4_ConcatRotate(&backend_viewmatrix, -angles[1], 0, 0, 1);
257         //Matrix4x4_ConcatTranslate(&backend_viewmatrix, -origin[0], -origin[1], -origin[2]);
258         memset(&backend_modelmatrix, 0, sizeof(backend_modelmatrix));
259 }
260
261 void GL_SetupView_Mode_Perspective (double frustumx, double frustumy, double zNear, double zFar)
262 {
263         double m[16];
264
265         // set up viewpoint
266         CHECKGLERROR
267         qglMatrixMode(GL_PROJECTION);CHECKGLERROR
268         qglLoadIdentity();CHECKGLERROR
269         // set view pyramid
270         qglFrustum(-frustumx * zNear, frustumx * zNear, -frustumy * zNear, frustumy * zNear, zNear, zFar);CHECKGLERROR
271         qglGetDoublev(GL_PROJECTION_MATRIX, m);CHECKGLERROR
272         Matrix4x4_FromArrayDoubleGL(&backend_projectmatrix, m);
273         qglMatrixMode(GL_MODELVIEW);CHECKGLERROR
274         GL_SetupView_Orientation_Identity();
275         CHECKGLERROR
276 }
277
278 void GL_SetupView_Mode_PerspectiveInfiniteFarClip (double frustumx, double frustumy, double zNear)
279 {
280         double nudge, m[16];
281
282         // set up viewpoint
283         CHECKGLERROR
284         qglMatrixMode(GL_PROJECTION);CHECKGLERROR
285         qglLoadIdentity();CHECKGLERROR
286         // set view pyramid
287         nudge = 1.0 - 1.0 / (1<<23);
288         m[ 0] = 1.0 / frustumx;
289         m[ 1] = 0;
290         m[ 2] = 0;
291         m[ 3] = 0;
292         m[ 4] = 0;
293         m[ 5] = 1.0 / frustumy;
294         m[ 6] = 0;
295         m[ 7] = 0;
296         m[ 8] = 0;
297         m[ 9] = 0;
298         m[10] = -nudge;
299         m[11] = -1;
300         m[12] = 0;
301         m[13] = 0;
302         m[14] = -2 * zNear * nudge;
303         m[15] = 0;
304         qglLoadMatrixd(m);CHECKGLERROR
305         qglMatrixMode(GL_MODELVIEW);CHECKGLERROR
306         GL_SetupView_Orientation_Identity();
307         CHECKGLERROR
308         Matrix4x4_FromArrayDoubleGL(&backend_projectmatrix, m);
309 }
310
311 void GL_SetupView_Mode_Ortho (double x1, double y1, double x2, double y2, double zNear, double zFar)
312 {
313         double m[16];
314
315         // set up viewpoint
316         CHECKGLERROR
317         qglMatrixMode(GL_PROJECTION);CHECKGLERROR
318         qglLoadIdentity();CHECKGLERROR
319         qglOrtho(x1, x2, y2, y1, zNear, zFar);CHECKGLERROR
320         qglGetDoublev(GL_PROJECTION_MATRIX, m);CHECKGLERROR
321         Matrix4x4_FromArrayDoubleGL(&backend_projectmatrix, m);
322         qglMatrixMode(GL_MODELVIEW);CHECKGLERROR
323         GL_SetupView_Orientation_Identity();
324         CHECKGLERROR
325 }
326
327 typedef struct gltextureunit_s
328 {
329         int t1d, t2d, t3d, tcubemap;
330         int arrayenabled;
331         unsigned int arraycomponents;
332         const void *pointer_texcoord;
333         int rgbscale, alphascale;
334         int combinergb, combinealpha;
335         // FIXME: add more combine stuff
336         // texmatrixenabled exists only to avoid unnecessary texmatrix compares
337         int texmatrixenabled;
338         matrix4x4_t matrix;
339 }
340 gltextureunit_t;
341
342 static struct gl_state_s
343 {
344         int blendfunc1;
345         int blendfunc2;
346         int blend;
347         GLboolean depthmask;
348         int colormask; // stored as bottom 4 bits: r g b a (3 2 1 0 order)
349         int depthtest;
350         int alphatest;
351         int scissortest;
352         unsigned int unit;
353         unsigned int clientunit;
354         gltextureunit_t units[MAX_TEXTUREUNITS];
355         float color4f[4];
356         int lockrange_first;
357         int lockrange_count;
358         const void *pointer_vertex;
359         const void *pointer_color;
360 }
361 gl_state;
362
363 void GL_SetupTextureState(void)
364 {
365         unsigned int i;
366         gltextureunit_t *unit;
367         CHECKGLERROR
368         gl_state.unit = MAX_TEXTUREUNITS;
369         gl_state.clientunit = MAX_TEXTUREUNITS;
370         for (i = 0;i < MAX_TEXTUREUNITS;i++)
371         {
372                 unit = gl_state.units + i;
373                 unit->t1d = 0;
374                 unit->t2d = 0;
375                 unit->t3d = 0;
376                 unit->tcubemap = 0;
377                 unit->arrayenabled = false;
378                 unit->arraycomponents = 0;
379                 unit->pointer_texcoord = NULL;
380                 unit->rgbscale = 1;
381                 unit->alphascale = 1;
382                 unit->combinergb = GL_MODULATE;
383                 unit->combinealpha = GL_MODULATE;
384                 unit->texmatrixenabled = false;
385                 unit->matrix = identitymatrix;
386         }
387
388         for (i = 0;i < backendimageunits;i++)
389         {
390                 GL_ActiveTexture(i);
391                 qglBindTexture(GL_TEXTURE_1D, 0);CHECKGLERROR
392                 qglBindTexture(GL_TEXTURE_2D, 0);CHECKGLERROR
393                 if (gl_texture3d)
394                 {
395                         qglBindTexture(GL_TEXTURE_3D, 0);CHECKGLERROR
396                 }
397                 if (gl_texturecubemap)
398                 {
399                         qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, 0);CHECKGLERROR
400                 }
401         }
402
403         for (i = 0;i < backendarrayunits;i++)
404         {
405                 GL_ClientActiveTexture(i);
406                 qglTexCoordPointer(2, GL_FLOAT, sizeof(float[2]), NULL);CHECKGLERROR
407                 qglDisableClientState(GL_TEXTURE_COORD_ARRAY);CHECKGLERROR
408         }
409
410         for (i = 0;i < backendunits;i++)
411         {
412                 GL_ActiveTexture(i);
413                 qglDisable(GL_TEXTURE_1D);CHECKGLERROR
414                 qglDisable(GL_TEXTURE_2D);CHECKGLERROR
415                 if (gl_texture3d)
416                 {
417                         qglDisable(GL_TEXTURE_3D);CHECKGLERROR
418                 }
419                 if (gl_texturecubemap)
420                 {
421                         qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
422                 }
423                 qglMatrixMode(GL_TEXTURE);CHECKGLERROR
424                 qglLoadIdentity();CHECKGLERROR
425                 qglMatrixMode(GL_MODELVIEW);CHECKGLERROR
426                 if (gl_combine.integer)
427                 {
428                         qglTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_ARB);CHECKGLERROR
429                         qglTexEnvi(GL_TEXTURE_ENV, GL_COMBINE_RGB_ARB, GL_MODULATE);CHECKGLERROR
430                         qglTexEnvi(GL_TEXTURE_ENV, GL_SOURCE0_RGB_ARB, GL_TEXTURE);CHECKGLERROR
431                         qglTexEnvi(GL_TEXTURE_ENV, GL_SOURCE1_RGB_ARB, GL_PREVIOUS_ARB);CHECKGLERROR
432                         qglTexEnvi(GL_TEXTURE_ENV, GL_SOURCE2_RGB_ARB, GL_TEXTURE);CHECKGLERROR // for GL_INTERPOLATE_ARB mode
433                         qglTexEnvi(GL_TEXTURE_ENV, GL_OPERAND0_RGB_ARB, GL_SRC_COLOR);CHECKGLERROR
434                         qglTexEnvi(GL_TEXTURE_ENV, GL_OPERAND1_RGB_ARB, GL_SRC_COLOR);CHECKGLERROR
435                         qglTexEnvi(GL_TEXTURE_ENV, GL_OPERAND2_RGB_ARB, GL_SRC_ALPHA);CHECKGLERROR
436                         qglTexEnvi(GL_TEXTURE_ENV, GL_COMBINE_ALPHA_ARB, GL_MODULATE);CHECKGLERROR
437                         qglTexEnvi(GL_TEXTURE_ENV, GL_SOURCE0_ALPHA_ARB, GL_TEXTURE);CHECKGLERROR
438                         qglTexEnvi(GL_TEXTURE_ENV, GL_SOURCE1_ALPHA_ARB, GL_PREVIOUS_ARB);CHECKGLERROR
439                         qglTexEnvi(GL_TEXTURE_ENV, GL_SOURCE2_ALPHA_ARB, GL_CONSTANT_ARB);CHECKGLERROR
440                         qglTexEnvi(GL_TEXTURE_ENV, GL_OPERAND0_ALPHA_ARB, GL_SRC_ALPHA);CHECKGLERROR
441                         qglTexEnvi(GL_TEXTURE_ENV, GL_OPERAND1_ALPHA_ARB, GL_SRC_ALPHA);CHECKGLERROR
442                         qglTexEnvi(GL_TEXTURE_ENV, GL_OPERAND2_ALPHA_ARB, GL_SRC_ALPHA);CHECKGLERROR
443                         qglTexEnvi(GL_TEXTURE_ENV, GL_RGB_SCALE_ARB, 1);CHECKGLERROR
444                         qglTexEnvi(GL_TEXTURE_ENV, GL_ALPHA_SCALE, 1);CHECKGLERROR
445                 }
446                 else
447                 {
448                         qglTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);CHECKGLERROR
449                 }
450                 CHECKGLERROR
451         }
452         CHECKGLERROR
453 }
454
455 void GL_Backend_ResetState(void)
456 {
457         memset(&gl_state, 0, sizeof(gl_state));
458         gl_state.depthtest = true;
459         gl_state.alphatest = false;
460         gl_state.blendfunc1 = GL_ONE;
461         gl_state.blendfunc2 = GL_ZERO;
462         gl_state.blend = false;
463         gl_state.depthmask = GL_TRUE;
464         gl_state.colormask = 15;
465         gl_state.color4f[0] = gl_state.color4f[1] = gl_state.color4f[2] = gl_state.color4f[3] = 1;
466         gl_state.lockrange_first = 0;
467         gl_state.lockrange_count = 0;
468         gl_state.pointer_vertex = NULL;
469         gl_state.pointer_color = NULL;
470
471         CHECKGLERROR
472
473         qglColorMask(1, 1, 1, 1);
474         qglAlphaFunc(GL_GEQUAL, 0.5);CHECKGLERROR
475         qglDisable(GL_ALPHA_TEST);CHECKGLERROR
476         qglBlendFunc(gl_state.blendfunc1, gl_state.blendfunc2);CHECKGLERROR
477         qglDisable(GL_BLEND);CHECKGLERROR
478         qglCullFace(GL_FRONT);CHECKGLERROR
479         qglEnable(GL_CULL_FACE);CHECKGLERROR
480         qglDepthFunc(GL_LEQUAL);CHECKGLERROR
481         qglEnable(GL_DEPTH_TEST);CHECKGLERROR
482         qglDepthMask(gl_state.depthmask);CHECKGLERROR
483
484         qglVertexPointer(3, GL_FLOAT, sizeof(float[3]), NULL);CHECKGLERROR
485         qglEnableClientState(GL_VERTEX_ARRAY);CHECKGLERROR
486
487         qglColorPointer(4, GL_FLOAT, sizeof(float[4]), NULL);CHECKGLERROR
488         qglDisableClientState(GL_COLOR_ARRAY);CHECKGLERROR
489
490         GL_Color(0, 0, 0, 0);
491         GL_Color(1, 1, 1, 1);
492
493         GL_SetupTextureState();
494 }
495
496 void GL_ActiveTexture(unsigned int num)
497 {
498         if (gl_state.unit != num)
499         {
500                 gl_state.unit = num;
501                 if (qglActiveTexture)
502                 {
503                         CHECKGLERROR
504                         qglActiveTexture(GL_TEXTURE0_ARB + gl_state.unit);
505                         CHECKGLERROR
506                 }
507         }
508 }
509
510 void GL_ClientActiveTexture(unsigned int num)
511 {
512         if (gl_state.clientunit != num)
513         {
514                 gl_state.clientunit = num;
515                 if (qglActiveTexture)
516                 {
517                         CHECKGLERROR
518                         qglClientActiveTexture(GL_TEXTURE0_ARB + gl_state.clientunit);
519                         CHECKGLERROR
520                 }
521         }
522 }
523
524 void GL_BlendFunc(int blendfunc1, int blendfunc2)
525 {
526         if (gl_state.blendfunc1 != blendfunc1 || gl_state.blendfunc2 != blendfunc2)
527         {
528                 CHECKGLERROR
529                 qglBlendFunc(gl_state.blendfunc1 = blendfunc1, gl_state.blendfunc2 = blendfunc2);CHECKGLERROR
530                 if (gl_state.blendfunc2 == GL_ZERO)
531                 {
532                         if (gl_state.blendfunc1 == GL_ONE)
533                         {
534                                 if (gl_state.blend)
535                                 {
536                                         gl_state.blend = 0;
537                                         qglDisable(GL_BLEND);CHECKGLERROR
538                                 }
539                         }
540                         else
541                         {
542                                 if (!gl_state.blend)
543                                 {
544                                         gl_state.blend = 1;
545                                         qglEnable(GL_BLEND);CHECKGLERROR
546                                 }
547                         }
548                 }
549                 else
550                 {
551                         if (!gl_state.blend)
552                         {
553                                 gl_state.blend = 1;
554                                 qglEnable(GL_BLEND);CHECKGLERROR
555                         }
556                 }
557         }
558 }
559
560 void GL_DepthMask(int state)
561 {
562         if (gl_state.depthmask != state)
563         {
564                 CHECKGLERROR
565                 qglDepthMask(gl_state.depthmask = state);CHECKGLERROR
566         }
567 }
568
569 void GL_DepthTest(int state)
570 {
571         if (gl_state.depthtest != state)
572         {
573                 gl_state.depthtest = state;
574                 CHECKGLERROR
575                 if (gl_state.depthtest)
576                 {
577                         qglEnable(GL_DEPTH_TEST);CHECKGLERROR
578                 }
579                 else
580                 {
581                         qglDisable(GL_DEPTH_TEST);CHECKGLERROR
582                 }
583         }
584 }
585
586 void GL_AlphaTest(int state)
587 {
588         if (gl_state.alphatest != state)
589         {
590                 gl_state.alphatest = state;
591                 CHECKGLERROR
592                 if (gl_state.alphatest)
593                 {
594                         qglEnable(GL_ALPHA_TEST);CHECKGLERROR
595                 }
596                 else
597                 {
598                         qglDisable(GL_ALPHA_TEST);CHECKGLERROR
599                 }
600         }
601 }
602
603 void GL_ColorMask(int r, int g, int b, int a)
604 {
605         int state = r*8 + g*4 + b*2 + a*1;
606         if (gl_state.colormask != state)
607         {
608                 gl_state.colormask = state;
609                 CHECKGLERROR
610                 qglColorMask((GLboolean)r, (GLboolean)g, (GLboolean)b, (GLboolean)a);CHECKGLERROR
611         }
612 }
613
614 void GL_Color(float cr, float cg, float cb, float ca)
615 {
616         if (gl_state.pointer_color || gl_state.color4f[0] != cr || gl_state.color4f[1] != cg || gl_state.color4f[2] != cb || gl_state.color4f[3] != ca)
617         {
618                 gl_state.color4f[0] = cr;
619                 gl_state.color4f[1] = cg;
620                 gl_state.color4f[2] = cb;
621                 gl_state.color4f[3] = ca;
622                 CHECKGLERROR
623                 qglColor4f(gl_state.color4f[0], gl_state.color4f[1], gl_state.color4f[2], gl_state.color4f[3]);
624                 CHECKGLERROR
625         }
626 }
627
628 void GL_LockArrays(int first, int count)
629 {
630         if (gl_state.lockrange_count != count || gl_state.lockrange_first != first)
631         {
632                 if (gl_state.lockrange_count)
633                 {
634                         gl_state.lockrange_count = 0;
635                         CHECKGLERROR
636                         qglUnlockArraysEXT();
637                         CHECKGLERROR
638                 }
639                 if (count && gl_supportslockarrays && gl_lockarrays.integer && r_render.integer)
640                 {
641                         gl_state.lockrange_first = first;
642                         gl_state.lockrange_count = count;
643                         CHECKGLERROR
644                         qglLockArraysEXT(first, count);
645                         CHECKGLERROR
646                 }
647         }
648 }
649
650 void GL_Scissor (int x, int y, int width, int height)
651 {
652         CHECKGLERROR
653         qglScissor(x, vid.height - (y + height),width,height);
654         CHECKGLERROR
655 }
656
657 void GL_ScissorTest(int state)
658 {
659         if(gl_state.scissortest == state)
660                 return;
661
662         CHECKGLERROR
663         if((gl_state.scissortest = state))
664                 qglEnable(GL_SCISSOR_TEST);
665         else
666                 qglDisable(GL_SCISSOR_TEST);
667         CHECKGLERROR
668 }
669
670 void GL_Clear(int mask)
671 {
672         CHECKGLERROR
673         qglClear(mask);CHECKGLERROR
674 }
675
676 void GL_TransformToScreen(const vec4_t in, vec4_t out)
677 {
678         vec4_t temp;
679         float iw;
680         Matrix4x4_Transform4 (&backend_viewmatrix, in, temp);
681         Matrix4x4_Transform4 (&backend_projectmatrix, temp, out);
682         iw = 1.0f / out[3];
683         out[0] = r_view.x + (out[0] * iw + 1.0f) * r_view.width * 0.5f;
684         out[1] = r_view.y + r_view.height - (out[1] * iw + 1.0f) * r_view.height * 0.5f;
685         out[2] = r_view.z + (out[2] * iw + 1.0f) * r_view.depth * 0.5f;
686 }
687
688 // called at beginning of frame
689 void R_Mesh_Start(void)
690 {
691         BACKENDACTIVECHECK
692         CHECKGLERROR
693         if (gl_printcheckerror.integer && !gl_paranoid.integer)
694         {
695                 Con_Printf("WARNING: gl_printcheckerror is on but gl_paranoid is off, turning it on...\n");
696                 Cvar_SetValueQuick(&gl_paranoid, 1);
697         }
698         GL_Backend_ResetState();
699 }
700
701 unsigned int GL_Backend_CompileProgram(int vertexstrings_count, const char **vertexstrings_list, int fragmentstrings_count, const char **fragmentstrings_list)
702 {
703         GLint vertexshadercompiled, fragmentshadercompiled, programlinked;
704         GLuint vertexshaderobject, fragmentshaderobject, programobject = 0;
705         char compilelog[MAX_INPUTLINE];
706         CHECKGLERROR
707
708         programobject = qglCreateProgramObjectARB();CHECKGLERROR
709         if (!programobject)
710                 return 0;
711
712         if (developer.integer >= 100)
713         {
714                 int i;
715                 Con_Printf("Compiling shader:\n");
716                 if (vertexstrings_count)
717                 {
718                         Con_Printf("------ VERTEX SHADER ------\n");
719                         for (i = 0;i < vertexstrings_count;i++)
720                                 Con_Print(vertexstrings_list[i]);
721                         Con_Print("\n");
722                 }
723                 if (fragmentstrings_count)
724                 {
725                         Con_Printf("------ FRAGMENT SHADER ------\n");
726                         for (i = 0;i < fragmentstrings_count;i++)
727                                 Con_Print(fragmentstrings_list[i]);
728                         Con_Print("\n");
729                 }
730         }
731
732         if (vertexstrings_count)
733         {
734                 vertexshaderobject = qglCreateShaderObjectARB(GL_VERTEX_SHADER_ARB);CHECKGLERROR
735                 if (!vertexshaderobject)
736                 {
737                         qglDeleteObjectARB(programobject);
738                         CHECKGLERROR
739                         return 0;
740                 }
741                 qglShaderSourceARB(vertexshaderobject, vertexstrings_count, vertexstrings_list, NULL);CHECKGLERROR
742                 qglCompileShaderARB(vertexshaderobject);CHECKGLERROR
743                 qglGetObjectParameterivARB(vertexshaderobject, GL_OBJECT_COMPILE_STATUS_ARB, &vertexshadercompiled);CHECKGLERROR
744                 qglGetInfoLogARB(vertexshaderobject, sizeof(compilelog), NULL, compilelog);CHECKGLERROR
745                 if (compilelog[0])
746                         Con_DPrintf("vertex shader compile log:\n%s\n", compilelog);
747                 if (!vertexshadercompiled)
748                 {
749                         qglDeleteObjectARB(programobject);CHECKGLERROR
750                         qglDeleteObjectARB(vertexshaderobject);CHECKGLERROR
751                         return 0;
752                 }
753                 qglAttachObjectARB(programobject, vertexshaderobject);CHECKGLERROR
754                 qglDeleteObjectARB(vertexshaderobject);CHECKGLERROR
755         }
756
757         if (fragmentstrings_count)
758         {
759                 fragmentshaderobject = qglCreateShaderObjectARB(GL_FRAGMENT_SHADER_ARB);CHECKGLERROR
760                 if (!fragmentshaderobject)
761                 {
762                         qglDeleteObjectARB(programobject);CHECKGLERROR
763                         return 0;
764                 }
765                 qglShaderSourceARB(fragmentshaderobject, fragmentstrings_count, fragmentstrings_list, NULL);CHECKGLERROR
766                 qglCompileShaderARB(fragmentshaderobject);CHECKGLERROR
767                 qglGetObjectParameterivARB(fragmentshaderobject, GL_OBJECT_COMPILE_STATUS_ARB, &fragmentshadercompiled);CHECKGLERROR
768                 qglGetInfoLogARB(fragmentshaderobject, sizeof(compilelog), NULL, compilelog);CHECKGLERROR
769                 if (compilelog[0])
770                         Con_DPrintf("fragment shader compile log:\n%s\n", compilelog);
771                 if (!fragmentshadercompiled)
772                 {
773                         qglDeleteObjectARB(programobject);CHECKGLERROR
774                         qglDeleteObjectARB(fragmentshaderobject);CHECKGLERROR
775                         return 0;
776                 }
777                 qglAttachObjectARB(programobject, fragmentshaderobject);CHECKGLERROR
778                 qglDeleteObjectARB(fragmentshaderobject);CHECKGLERROR
779         }
780
781         qglLinkProgramARB(programobject);CHECKGLERROR
782         qglGetObjectParameterivARB(programobject, GL_OBJECT_LINK_STATUS_ARB, &programlinked);CHECKGLERROR
783         qglGetInfoLogARB(programobject, sizeof(compilelog), NULL, compilelog);CHECKGLERROR
784         if (compilelog[0])
785         {
786                 Con_DPrintf("program link log:\n%s\n", compilelog);
787                 // software vertex shader is ok but software fragment shader is WAY
788                 // too slow, fail program if so.
789                 // NOTE: this string might be ATI specific, but that's ok because the
790                 // ATI R300 chip (Radeon 9500-9800/X300) is the most likely to use a
791                 // software fragment shader due to low instruction and dependent
792                 // texture limits.
793                 if (strstr(compilelog, "fragment shader will run in software"))
794                         programlinked = false;
795         }
796         if (!programlinked)
797         {
798                 qglDeleteObjectARB(programobject);CHECKGLERROR
799                 return 0;
800         }
801         CHECKGLERROR
802         return programobject;
803 }
804
805 void GL_Backend_FreeProgram(unsigned int prog)
806 {
807         CHECKGLERROR
808         qglDeleteObjectARB(prog);
809         CHECKGLERROR
810 }
811
812 int gl_backend_rebindtextures;
813
814 void GL_Backend_RenumberElements(int *out, int count, const int *in, int offset)
815 {
816         int i;
817         if (offset)
818         {
819                 for (i = 0;i < count;i++)
820                         *out++ = *in++ + offset;
821         }
822         else
823                 memcpy(out, in, sizeof(*out) * count);
824 }
825
826 // renders triangles using vertices from the active arrays
827 int paranoidblah = 0;
828 void R_Mesh_Draw(int firstvertex, int numvertices, int numtriangles, const int *elements)
829 {
830         unsigned int numelements = numtriangles * 3;
831         if (numvertices < 3 || numtriangles < 1)
832         {
833                 Con_Printf("R_Mesh_Draw(%d, %d, %d, %08p);\n", firstvertex, numvertices, numtriangles, elements);
834                 return;
835         }
836         CHECKGLERROR
837         r_refdef.stats.meshes++;
838         r_refdef.stats.meshes_elements += numelements;
839         if (gl_paranoid.integer)
840         {
841                 unsigned int i, j, size;
842                 const int *p;
843                 if (!qglIsEnabled(GL_VERTEX_ARRAY))
844                         Con_Print("R_Mesh_Draw: vertex array not enabled\n");
845                 CHECKGLERROR
846                 for (j = 0, size = numvertices * 3, p = (int *)((float *)gl_state.pointer_vertex + firstvertex * 3);j < size;j++, p++)
847                         paranoidblah += *p;
848                 if (gl_state.pointer_color)
849                 {
850                         if (!qglIsEnabled(GL_COLOR_ARRAY))
851                                 Con_Print("R_Mesh_Draw: color array set but not enabled\n");
852                         CHECKGLERROR
853                         for (j = 0, size = numvertices * 4, p = (int *)((float *)gl_state.pointer_color + firstvertex * 4);j < size;j++, p++)
854                                 paranoidblah += *p;
855                 }
856                 for (i = 0;i < backendarrayunits;i++)
857                 {
858                         if (gl_state.units[i].arrayenabled)
859                         {
860                                 GL_ClientActiveTexture(i);
861                                 if (!qglIsEnabled(GL_TEXTURE_COORD_ARRAY))
862                                         Con_Print("R_Mesh_Draw: texcoord array set but not enabled\n");
863                                 CHECKGLERROR
864                                 for (j = 0, size = numvertices * gl_state.units[i].arraycomponents, p = (int *)((float *)gl_state.units[i].pointer_texcoord + firstvertex * gl_state.units[i].arraycomponents);j < size;j++, p++)
865                                         paranoidblah += *p;
866                         }
867                 }
868                 for (i = 0;i < (unsigned int) numtriangles * 3;i++)
869                 {
870                         if (elements[i] < firstvertex || elements[i] >= firstvertex + numvertices)
871                         {
872                                 Con_Printf("R_Mesh_Draw: invalid vertex index %i (outside range %i - %i) in elements list\n", elements[i], firstvertex, firstvertex + numvertices);
873                                 return;
874                         }
875                 }
876                 CHECKGLERROR
877         }
878         if (r_render.integer)
879         {
880                 CHECKGLERROR
881                 if (gl_mesh_testmanualfeeding.integer)
882                 {
883                         unsigned int i, j;
884                         const GLfloat *p;
885                         qglBegin(GL_TRIANGLES);
886                         for (i = 0;i < (unsigned int) numtriangles * 3;i++)
887                         {
888                                 for (j = 0;j < backendarrayunits;j++)
889                                 {
890                                         if (gl_state.units[j].pointer_texcoord)
891                                         {
892                                                 if (backendarrayunits > 1)
893                                                 {
894                                                         if (gl_state.units[j].arraycomponents == 4)
895                                                         {
896                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 4;
897                                                                 qglMultiTexCoord4f(GL_TEXTURE0_ARB + j, p[0], p[1], p[2], p[3]);
898                                                         }
899                                                         else if (gl_state.units[j].arraycomponents == 3)
900                                                         {
901                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 3;
902                                                                 qglMultiTexCoord3f(GL_TEXTURE0_ARB + j, p[0], p[1], p[2]);
903                                                         }
904                                                         else if (gl_state.units[j].arraycomponents == 2)
905                                                         {
906                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 2;
907                                                                 qglMultiTexCoord2f(GL_TEXTURE0_ARB + j, p[0], p[1]);
908                                                         }
909                                                         else
910                                                         {
911                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 1;
912                                                                 qglMultiTexCoord1f(GL_TEXTURE0_ARB + j, p[0]);
913                                                         }
914                                                 }
915                                                 else
916                                                 {
917                                                         if (gl_state.units[j].arraycomponents == 4)
918                                                         {
919                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 4;
920                                                                 qglTexCoord4f(p[0], p[1], p[2], p[3]);
921                                                         }
922                                                         else if (gl_state.units[j].arraycomponents == 3)
923                                                         {
924                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 3;
925                                                                 qglTexCoord3f(p[0], p[1], p[2]);
926                                                         }
927                                                         else if (gl_state.units[j].arraycomponents == 2)
928                                                         {
929                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 2;
930                                                                 qglTexCoord2f(p[0], p[1]);
931                                                         }
932                                                         else
933                                                         {
934                                                                 p = ((const GLfloat *)(gl_state.units[j].pointer_texcoord)) + elements[i] * 1;
935                                                                 qglTexCoord1f(p[0]);
936                                                         }
937                                                 }
938                                         }
939                                 }
940                                 if (gl_state.pointer_color)
941                                 {
942                                         p = ((const GLfloat *)(gl_state.pointer_color)) + elements[i] * 4;
943                                         qglColor4f(p[0], p[1], p[2], p[3]);
944                                 }
945                                 p = ((const GLfloat *)(gl_state.pointer_vertex)) + elements[i] * 3;
946                                 qglVertex3f(p[0], p[1], p[2]);
947                         }
948                         qglEnd();
949                         CHECKGLERROR
950                 }
951                 else if (gl_mesh_testarrayelement.integer)
952                 {
953                         int i;
954                         qglBegin(GL_TRIANGLES);
955                         for (i = 0;i < numtriangles * 3;i++)
956                         {
957                                 qglArrayElement(elements[i]);
958                         }
959                         qglEnd();
960                         CHECKGLERROR
961                 }
962                 else if (gl_mesh_drawrangeelements.integer && qglDrawRangeElements != NULL)
963                 {
964                         qglDrawRangeElements(GL_TRIANGLES, firstvertex, firstvertex + numvertices, numelements, GL_UNSIGNED_INT, elements);
965                         CHECKGLERROR
966                 }
967                 else
968                 {
969                         qglDrawElements(GL_TRIANGLES, numelements, GL_UNSIGNED_INT, elements);
970                         CHECKGLERROR
971                 }
972         }
973 }
974
975 // restores backend state, used when done with 3D rendering
976 void R_Mesh_Finish(void)
977 {
978         unsigned int i;
979         BACKENDACTIVECHECK
980         CHECKGLERROR
981         GL_LockArrays(0, 0);
982         CHECKGLERROR
983
984         for (i = 0;i < backendimageunits;i++)
985         {
986                 GL_ActiveTexture(i);
987                 qglBindTexture(GL_TEXTURE_1D, 0);CHECKGLERROR
988                 qglBindTexture(GL_TEXTURE_2D, 0);CHECKGLERROR
989                 if (gl_texture3d)
990                 {
991                         qglBindTexture(GL_TEXTURE_3D, 0);CHECKGLERROR
992                 }
993                 if (gl_texturecubemap)
994                 {
995                         qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, 0);CHECKGLERROR
996                 }
997         }
998         for (i = 0;i < backendarrayunits;i++)
999         {
1000                 GL_ActiveTexture(backendarrayunits - 1 - i);
1001                 qglDisableClientState(GL_TEXTURE_COORD_ARRAY);CHECKGLERROR
1002         }
1003         for (i = 0;i < backendunits;i++)
1004         {
1005                 GL_ActiveTexture(backendunits - 1 - i);
1006                 qglDisable(GL_TEXTURE_1D);CHECKGLERROR
1007                 qglDisable(GL_TEXTURE_2D);CHECKGLERROR
1008                 if (gl_texture3d)
1009                 {
1010                         qglDisable(GL_TEXTURE_3D);CHECKGLERROR
1011                 }
1012                 if (gl_texturecubemap)
1013                 {
1014                         qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1015                 }
1016                 qglTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);CHECKGLERROR
1017                 if (gl_combine.integer)
1018                 {
1019                         qglTexEnvi(GL_TEXTURE_ENV, GL_RGB_SCALE_ARB, 1);CHECKGLERROR
1020                         qglTexEnvi(GL_TEXTURE_ENV, GL_ALPHA_SCALE, 1);CHECKGLERROR
1021                 }
1022         }
1023         qglDisableClientState(GL_COLOR_ARRAY);CHECKGLERROR
1024         qglDisableClientState(GL_VERTEX_ARRAY);CHECKGLERROR
1025
1026         qglDisable(GL_BLEND);CHECKGLERROR
1027         qglEnable(GL_DEPTH_TEST);CHECKGLERROR
1028         qglDepthMask(GL_TRUE);CHECKGLERROR
1029         qglBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);CHECKGLERROR
1030 }
1031
1032 void R_Mesh_Matrix(const matrix4x4_t *matrix)
1033 {
1034         if (memcmp(matrix, &backend_modelmatrix, sizeof(matrix4x4_t)))
1035         {
1036                 double glmatrix[16];
1037                 backend_modelmatrix = *matrix;
1038                 Matrix4x4_Concat(&backend_modelviewmatrix, &backend_viewmatrix, matrix);
1039                 Matrix4x4_ToArrayDoubleGL(&backend_modelviewmatrix, glmatrix);
1040                 CHECKGLERROR
1041                 qglLoadMatrixd(glmatrix);CHECKGLERROR
1042         }
1043 }
1044
1045 void R_Mesh_VertexPointer(const float *vertex3f)
1046 {
1047         if (gl_state.pointer_vertex != vertex3f)
1048         {
1049                 gl_state.pointer_vertex = vertex3f;
1050                 CHECKGLERROR
1051                 qglVertexPointer(3, GL_FLOAT, sizeof(float[3]), gl_state.pointer_vertex);
1052                 CHECKGLERROR
1053         }
1054 }
1055
1056 void R_Mesh_ColorPointer(const float *color4f)
1057 {
1058         if (gl_state.pointer_color != color4f)
1059         {
1060                 CHECKGLERROR
1061                 if (!gl_state.pointer_color)
1062                 {
1063                         qglEnableClientState(GL_COLOR_ARRAY);CHECKGLERROR
1064                 }
1065                 else if (!color4f)
1066                 {
1067                         qglDisableClientState(GL_COLOR_ARRAY);CHECKGLERROR
1068                         // when color array is on the glColor gets trashed, set it again
1069                         qglColor4f(gl_state.color4f[0], gl_state.color4f[1], gl_state.color4f[2], gl_state.color4f[3]);CHECKGLERROR
1070                 }
1071                 gl_state.pointer_color = color4f;
1072                 qglColorPointer(4, GL_FLOAT, sizeof(float[4]), gl_state.pointer_color);CHECKGLERROR
1073         }
1074 }
1075
1076 void R_Mesh_TexCoordPointer(unsigned int unitnum, unsigned int numcomponents, const float *texcoord)
1077 {
1078         gltextureunit_t *unit = gl_state.units + unitnum;
1079         // update array settings
1080         CHECKGLERROR
1081         if (texcoord)
1082         {
1083                 // texcoord array
1084                 if (unit->pointer_texcoord != texcoord || unit->arraycomponents != numcomponents)
1085                 {
1086                         unit->pointer_texcoord = texcoord;
1087                         unit->arraycomponents = numcomponents;
1088                         GL_ClientActiveTexture(unitnum);
1089                         qglTexCoordPointer(unit->arraycomponents, GL_FLOAT, sizeof(float) * unit->arraycomponents, unit->pointer_texcoord);CHECKGLERROR
1090                 }
1091                 // texture array unit is enabled, enable the array
1092                 if (!unit->arrayenabled)
1093                 {
1094                         unit->arrayenabled = true;
1095                         GL_ClientActiveTexture(unitnum);
1096                         qglEnableClientState(GL_TEXTURE_COORD_ARRAY);CHECKGLERROR
1097                 }
1098         }
1099         else
1100         {
1101                 // texture array unit is disabled, disable the array
1102                 if (unit->arrayenabled)
1103                 {
1104                         unit->arrayenabled = false;
1105                         GL_ClientActiveTexture(unitnum);
1106                         qglDisableClientState(GL_TEXTURE_COORD_ARRAY);CHECKGLERROR
1107                 }
1108         }
1109 }
1110
1111 void R_Mesh_TexBindAll(unsigned int unitnum, int tex1d, int tex2d, int tex3d, int texcubemap)
1112 {
1113         gltextureunit_t *unit = gl_state.units + unitnum;
1114         if (unitnum >= backendimageunits)
1115                 return;
1116         // update 1d texture binding
1117         if (unit->t1d != tex1d)
1118         {
1119                 GL_ActiveTexture(unitnum);
1120                 if (unitnum < backendunits)
1121                 {
1122                         if (tex1d)
1123                         {
1124                                 if (unit->t1d == 0)
1125                                 {
1126                                         qglEnable(GL_TEXTURE_1D);CHECKGLERROR
1127                                 }
1128                         }
1129                         else
1130                         {
1131                                 if (unit->t1d)
1132                                 {
1133                                         qglDisable(GL_TEXTURE_1D);CHECKGLERROR
1134                                 }
1135                         }
1136                 }
1137                 unit->t1d = tex1d;
1138                 qglBindTexture(GL_TEXTURE_1D, unit->t1d);CHECKGLERROR
1139         }
1140         // update 2d texture binding
1141         if (unit->t2d != tex2d)
1142         {
1143                 GL_ActiveTexture(unitnum);
1144                 if (unitnum < backendunits)
1145                 {
1146                         if (tex2d)
1147                         {
1148                                 if (unit->t2d == 0)
1149                                 {
1150                                         qglEnable(GL_TEXTURE_2D);CHECKGLERROR
1151                                 }
1152                         }
1153                         else
1154                         {
1155                                 if (unit->t2d)
1156                                 {
1157                                         qglDisable(GL_TEXTURE_2D);CHECKGLERROR
1158                                 }
1159                         }
1160                 }
1161                 unit->t2d = tex2d;
1162                 qglBindTexture(GL_TEXTURE_2D, unit->t2d);CHECKGLERROR
1163         }
1164         // update 3d texture binding
1165         if (unit->t3d != tex3d)
1166         {
1167                 GL_ActiveTexture(unitnum);
1168                 if (unitnum < backendunits)
1169                 {
1170                         if (tex3d)
1171                         {
1172                                 if (unit->t3d == 0)
1173                                 {
1174                                         qglEnable(GL_TEXTURE_3D);CHECKGLERROR
1175                                 }
1176                         }
1177                         else
1178                         {
1179                                 if (unit->t3d)
1180                                 {
1181                                         qglDisable(GL_TEXTURE_3D);CHECKGLERROR
1182                                 }
1183                         }
1184                 }
1185                 unit->t3d = tex3d;
1186                 qglBindTexture(GL_TEXTURE_3D, unit->t3d);CHECKGLERROR
1187         }
1188         // update cubemap texture binding
1189         if (unit->tcubemap != texcubemap)
1190         {
1191                 GL_ActiveTexture(unitnum);
1192                 if (unitnum < backendunits)
1193                 {
1194                         if (texcubemap)
1195                         {
1196                                 if (unit->tcubemap == 0)
1197                                 {
1198                                         qglEnable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1199                                 }
1200                         }
1201                         else
1202                         {
1203                                 if (unit->tcubemap)
1204                                 {
1205                                         qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1206                                 }
1207                         }
1208                 }
1209                 unit->tcubemap = texcubemap;
1210                 qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, unit->tcubemap);CHECKGLERROR
1211         }
1212 }
1213
1214 void R_Mesh_TexBind1D(unsigned int unitnum, int texnum)
1215 {
1216         gltextureunit_t *unit = gl_state.units + unitnum;
1217         if (unitnum >= backendimageunits)
1218                 return;
1219         // update 1d texture binding
1220         if (unit->t1d != texnum)
1221         {
1222                 GL_ActiveTexture(unitnum);
1223                 if (unitnum < backendunits)
1224                 {
1225                         if (texnum)
1226                         {
1227                                 if (unit->t1d == 0)
1228                                 {
1229                                         qglEnable(GL_TEXTURE_1D);CHECKGLERROR
1230                                 }
1231                         }
1232                         else
1233                         {
1234                                 if (unit->t1d)
1235                                 {
1236                                         qglDisable(GL_TEXTURE_1D);CHECKGLERROR
1237                                 }
1238                         }
1239                 }
1240                 unit->t1d = texnum;
1241                 qglBindTexture(GL_TEXTURE_1D, unit->t1d);CHECKGLERROR
1242         }
1243         // update 2d texture binding
1244         if (unit->t2d)
1245         {
1246                 GL_ActiveTexture(unitnum);
1247                 if (unitnum < backendunits)
1248                 {
1249                         if (unit->t2d)
1250                         {
1251                                 qglDisable(GL_TEXTURE_2D);CHECKGLERROR
1252                         }
1253                 }
1254                 unit->t2d = 0;
1255                 qglBindTexture(GL_TEXTURE_2D, unit->t2d);CHECKGLERROR
1256         }
1257         // update 3d texture binding
1258         if (unit->t3d)
1259         {
1260                 GL_ActiveTexture(unitnum);
1261                 if (unitnum < backendunits)
1262                 {
1263                         if (unit->t3d)
1264                         {
1265                                 qglDisable(GL_TEXTURE_3D);CHECKGLERROR
1266                         }
1267                 }
1268                 unit->t3d = 0;
1269                 qglBindTexture(GL_TEXTURE_3D, unit->t3d);CHECKGLERROR
1270         }
1271         // update cubemap texture binding
1272         if (unit->tcubemap)
1273         {
1274                 GL_ActiveTexture(unitnum);
1275                 if (unitnum < backendunits)
1276                 {
1277                         if (unit->tcubemap)
1278                         {
1279                                 qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1280                         }
1281                 }
1282                 unit->tcubemap = 0;
1283                 qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, unit->tcubemap);CHECKGLERROR
1284         }
1285 }
1286
1287 void R_Mesh_TexBind(unsigned int unitnum, int texnum)
1288 {
1289         gltextureunit_t *unit = gl_state.units + unitnum;
1290         if (unitnum >= backendimageunits)
1291                 return;
1292         // update 1d texture binding
1293         if (unit->t1d)
1294         {
1295                 GL_ActiveTexture(unitnum);
1296                 if (unitnum < backendunits)
1297                 {
1298                         if (unit->t1d)
1299                         {
1300                                 qglDisable(GL_TEXTURE_1D);CHECKGLERROR
1301                         }
1302                 }
1303                 unit->t1d = 0;
1304                 qglBindTexture(GL_TEXTURE_1D, unit->t1d);CHECKGLERROR
1305         }
1306         // update 2d texture binding
1307         if (unit->t2d != texnum)
1308         {
1309                 GL_ActiveTexture(unitnum);
1310                 if (unitnum < backendunits)
1311                 {
1312                         if (texnum)
1313                         {
1314                                 if (unit->t2d == 0)
1315                                 {
1316                                         qglEnable(GL_TEXTURE_2D);CHECKGLERROR
1317                                 }
1318                         }
1319                         else
1320                         {
1321                                 if (unit->t2d)
1322                                 {
1323                                         qglDisable(GL_TEXTURE_2D);CHECKGLERROR
1324                                 }
1325                         }
1326                 }
1327                 unit->t2d = texnum;
1328                 qglBindTexture(GL_TEXTURE_2D, unit->t2d);CHECKGLERROR
1329         }
1330         // update 3d texture binding
1331         if (unit->t3d)
1332         {
1333                 GL_ActiveTexture(unitnum);
1334                 if (unitnum < backendunits)
1335                 {
1336                         if (unit->t3d)
1337                         {
1338                                 qglDisable(GL_TEXTURE_3D);CHECKGLERROR
1339                         }
1340                 }
1341                 unit->t3d = 0;
1342                 qglBindTexture(GL_TEXTURE_3D, unit->t3d);CHECKGLERROR
1343         }
1344         // update cubemap texture binding
1345         if (unit->tcubemap != 0)
1346         {
1347                 GL_ActiveTexture(unitnum);
1348                 if (unitnum < backendunits)
1349                 {
1350                         if (unit->tcubemap)
1351                         {
1352                                 qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1353                         }
1354                 }
1355                 unit->tcubemap = 0;
1356                 qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, unit->tcubemap);CHECKGLERROR
1357         }
1358 }
1359
1360 void R_Mesh_TexBind3D(unsigned int unitnum, int texnum)
1361 {
1362         gltextureunit_t *unit = gl_state.units + unitnum;
1363         if (unitnum >= backendimageunits)
1364                 return;
1365         // update 1d texture binding
1366         if (unit->t1d)
1367         {
1368                 GL_ActiveTexture(unitnum);
1369                 if (unitnum < backendunits)
1370                 {
1371                         if (unit->t1d)
1372                         {
1373                                 qglDisable(GL_TEXTURE_1D);CHECKGLERROR
1374                         }
1375                 }
1376                 unit->t1d = 0;
1377                 qglBindTexture(GL_TEXTURE_1D, unit->t1d);CHECKGLERROR
1378         }
1379         // update 2d texture binding
1380         if (unit->t2d)
1381         {
1382                 GL_ActiveTexture(unitnum);
1383                 if (unitnum < backendunits)
1384                 {
1385                         if (unit->t2d)
1386                         {
1387                                 qglDisable(GL_TEXTURE_2D);CHECKGLERROR
1388                         }
1389                 }
1390                 unit->t2d = 0;
1391                 qglBindTexture(GL_TEXTURE_2D, unit->t2d);CHECKGLERROR
1392         }
1393         // update 3d texture binding
1394         if (unit->t3d != texnum)
1395         {
1396                 GL_ActiveTexture(unitnum);
1397                 if (unitnum < backendunits)
1398                 {
1399                         if (texnum)
1400                         {
1401                                 if (unit->t3d == 0)
1402                                 {
1403                                         qglEnable(GL_TEXTURE_3D);CHECKGLERROR
1404                                 }
1405                         }
1406                         else
1407                         {
1408                                 if (unit->t3d)
1409                                 {
1410                                         qglDisable(GL_TEXTURE_3D);CHECKGLERROR
1411                                 }
1412                         }
1413                 }
1414                 unit->t3d = texnum;
1415                 qglBindTexture(GL_TEXTURE_3D, unit->t3d);CHECKGLERROR
1416         }
1417         // update cubemap texture binding
1418         if (unit->tcubemap != 0)
1419         {
1420                 GL_ActiveTexture(unitnum);
1421                 if (unitnum < backendunits)
1422                 {
1423                         if (unit->tcubemap)
1424                         {
1425                                 qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1426                         }
1427                 }
1428                 unit->tcubemap = 0;
1429                 qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, unit->tcubemap);CHECKGLERROR
1430         }
1431 }
1432
1433 void R_Mesh_TexBindCubeMap(unsigned int unitnum, int texnum)
1434 {
1435         gltextureunit_t *unit = gl_state.units + unitnum;
1436         if (unitnum >= backendimageunits)
1437                 return;
1438         // update 1d texture binding
1439         if (unit->t1d)
1440         {
1441                 GL_ActiveTexture(unitnum);
1442                 if (unitnum < backendunits)
1443                 {
1444                         if (unit->t1d)
1445                         {
1446                                 qglDisable(GL_TEXTURE_1D);CHECKGLERROR
1447                         }
1448                 }
1449                 unit->t1d = 0;
1450                 qglBindTexture(GL_TEXTURE_1D, unit->t1d);CHECKGLERROR
1451         }
1452         // update 2d texture binding
1453         if (unit->t2d)
1454         {
1455                 GL_ActiveTexture(unitnum);
1456                 if (unitnum < backendunits)
1457                 {
1458                         if (unit->t2d)
1459                         {
1460                                 qglDisable(GL_TEXTURE_2D);CHECKGLERROR
1461                         }
1462                 }
1463                 unit->t2d = 0;
1464                 qglBindTexture(GL_TEXTURE_2D, unit->t2d);CHECKGLERROR
1465         }
1466         // update 3d texture binding
1467         if (unit->t3d)
1468         {
1469                 GL_ActiveTexture(unitnum);
1470                 if (unitnum < backendunits)
1471                 {
1472                         if (unit->t3d)
1473                         {
1474                                 qglDisable(GL_TEXTURE_3D);CHECKGLERROR
1475                         }
1476                 }
1477                 unit->t3d = 0;
1478                 qglBindTexture(GL_TEXTURE_3D, unit->t3d);CHECKGLERROR
1479         }
1480         // update cubemap texture binding
1481         if (unit->tcubemap != texnum)
1482         {
1483                 GL_ActiveTexture(unitnum);
1484                 if (unitnum < backendunits)
1485                 {
1486                         if (texnum)
1487                         {
1488                                 if (unit->tcubemap == 0)
1489                                 {
1490                                         qglEnable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1491                                 }
1492                         }
1493                         else
1494                         {
1495                                 if (unit->tcubemap)
1496                                 {
1497                                         qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1498                                 }
1499                         }
1500                 }
1501                 unit->tcubemap = texnum;
1502                 qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, unit->tcubemap);CHECKGLERROR
1503         }
1504 }
1505
1506 void R_Mesh_TexMatrix(unsigned int unitnum, const matrix4x4_t *matrix)
1507 {
1508         gltextureunit_t *unit = gl_state.units + unitnum;
1509         if (matrix->m[3][3])
1510         {
1511                 // texmatrix specified, check if it is different
1512                 if (!unit->texmatrixenabled || memcmp(&unit->matrix, matrix, sizeof(matrix4x4_t)))
1513                 {
1514                         double glmatrix[16];
1515                         unit->texmatrixenabled = true;
1516                         unit->matrix = *matrix;
1517                         CHECKGLERROR
1518                         Matrix4x4_ToArrayDoubleGL(&unit->matrix, glmatrix);
1519                         qglMatrixMode(GL_TEXTURE);CHECKGLERROR
1520                         GL_ActiveTexture(unitnum);
1521                         qglLoadMatrixd(glmatrix);CHECKGLERROR
1522                         qglMatrixMode(GL_MODELVIEW);CHECKGLERROR
1523                 }
1524         }
1525         else
1526         {
1527                 // no texmatrix specified, revert to identity
1528                 if (unit->texmatrixenabled)
1529                 {
1530                         unit->texmatrixenabled = false;
1531                         CHECKGLERROR
1532                         qglMatrixMode(GL_TEXTURE);CHECKGLERROR
1533                         GL_ActiveTexture(unitnum);
1534                         qglLoadIdentity();CHECKGLERROR
1535                         qglMatrixMode(GL_MODELVIEW);CHECKGLERROR
1536                 }
1537         }
1538 }
1539
1540 void R_Mesh_TexCombine(unsigned int unitnum, int combinergb, int combinealpha, int rgbscale, int alphascale)
1541 {
1542         gltextureunit_t *unit = gl_state.units + unitnum;
1543         CHECKGLERROR
1544         if (gl_combine.integer)
1545         {
1546                 // GL_ARB_texture_env_combine
1547                 if (!combinergb)
1548                         combinergb = GL_MODULATE;
1549                 if (!combinealpha)
1550                         combinealpha = GL_MODULATE;
1551                 if (!rgbscale)
1552                         rgbscale = 1;
1553                 if (!alphascale)
1554                         alphascale = 1;
1555                 if (unit->combinergb != combinergb)
1556                 {
1557                         unit->combinergb = combinergb;
1558                         GL_ActiveTexture(unitnum);
1559                         qglTexEnvi(GL_TEXTURE_ENV, GL_COMBINE_RGB_ARB, unit->combinergb);CHECKGLERROR
1560                 }
1561                 if (unit->combinealpha != combinealpha)
1562                 {
1563                         unit->combinealpha = combinealpha;
1564                         GL_ActiveTexture(unitnum);
1565                         qglTexEnvi(GL_TEXTURE_ENV, GL_COMBINE_ALPHA_ARB, unit->combinealpha);CHECKGLERROR
1566                 }
1567                 if (unit->rgbscale != rgbscale)
1568                 {
1569                         GL_ActiveTexture(unitnum);
1570                         qglTexEnvi(GL_TEXTURE_ENV, GL_RGB_SCALE_ARB, (unit->rgbscale = rgbscale));CHECKGLERROR
1571                 }
1572                 if (unit->alphascale != alphascale)
1573                 {
1574                         GL_ActiveTexture(unitnum);
1575                         qglTexEnvi(GL_TEXTURE_ENV, GL_ALPHA_SCALE, (unit->alphascale = alphascale));CHECKGLERROR
1576                 }
1577         }
1578         else
1579         {
1580                 // normal GL texenv
1581                 if (!combinergb)
1582                         combinergb = GL_MODULATE;
1583                 if (unit->combinergb != combinergb)
1584                 {
1585                         unit->combinergb = combinergb;
1586                         GL_ActiveTexture(unitnum);
1587                         qglTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, unit->combinergb);CHECKGLERROR
1588                 }
1589         }
1590 }
1591
1592 void R_Mesh_TextureState(const rmeshstate_t *m)
1593 {
1594         unsigned int i;
1595
1596         BACKENDACTIVECHECK
1597
1598         CHECKGLERROR
1599         if (gl_backend_rebindtextures)
1600         {
1601                 gl_backend_rebindtextures = false;
1602                 GL_SetupTextureState();
1603                 CHECKGLERROR
1604         }
1605
1606         for (i = 0;i < backendimageunits;i++)
1607                 R_Mesh_TexBindAll(i, m->tex1d[i], m->tex[i], m->tex3d[i], m->texcubemap[i]);
1608         for (i = 0;i < backendarrayunits;i++)
1609         {
1610                 if (m->pointer_texcoord3f[i])
1611                         R_Mesh_TexCoordPointer(i, 3, m->pointer_texcoord3f[i]);
1612                 else
1613                         R_Mesh_TexCoordPointer(i, 2, m->pointer_texcoord[i]);
1614         }
1615         for (i = 0;i < backendunits;i++)
1616         {
1617                 R_Mesh_TexMatrix(i, &m->texmatrix[i]);
1618                 R_Mesh_TexCombine(i, m->texcombinergb[i], m->texcombinealpha[i], m->texrgbscale[i], m->texalphascale[i]);
1619         }
1620         CHECKGLERROR
1621 }
1622
1623 void R_Mesh_ResetTextureState(void)
1624 {
1625         unsigned int unitnum;
1626
1627         BACKENDACTIVECHECK
1628
1629         CHECKGLERROR
1630         if (gl_backend_rebindtextures)
1631         {
1632                 gl_backend_rebindtextures = false;
1633                 GL_SetupTextureState();
1634                 CHECKGLERROR
1635         }
1636
1637         for (unitnum = 0;unitnum < backendimageunits;unitnum++)
1638         {
1639                 gltextureunit_t *unit = gl_state.units + unitnum;
1640                 // update 1d texture binding
1641                 if (unit->t1d)
1642                 {
1643                         GL_ActiveTexture(unitnum);
1644                         if (unitnum < backendunits)
1645                         {
1646                                 qglDisable(GL_TEXTURE_1D);CHECKGLERROR
1647                         }
1648                         unit->t1d = 0;
1649                         qglBindTexture(GL_TEXTURE_1D, unit->t1d);CHECKGLERROR
1650                 }
1651                 // update 2d texture binding
1652                 if (unit->t2d)
1653                 {
1654                         GL_ActiveTexture(unitnum);
1655                         if (unitnum < backendunits)
1656                         {
1657                                 qglDisable(GL_TEXTURE_2D);CHECKGLERROR
1658                         }
1659                         unit->t2d = 0;
1660                         qglBindTexture(GL_TEXTURE_2D, unit->t2d);CHECKGLERROR
1661                 }
1662                 // update 3d texture binding
1663                 if (unit->t3d)
1664                 {
1665                         GL_ActiveTexture(unitnum);
1666                         if (unitnum < backendunits)
1667                         {
1668                                 qglDisable(GL_TEXTURE_3D);CHECKGLERROR
1669                         }
1670                         unit->t3d = 0;
1671                         qglBindTexture(GL_TEXTURE_3D, unit->t3d);CHECKGLERROR
1672                 }
1673                 // update cubemap texture binding
1674                 if (unit->tcubemap)
1675                 {
1676                         GL_ActiveTexture(unitnum);
1677                         if (unitnum < backendunits)
1678                         {
1679                                 qglDisable(GL_TEXTURE_CUBE_MAP_ARB);CHECKGLERROR
1680                         }
1681                         unit->tcubemap = 0;
1682                         qglBindTexture(GL_TEXTURE_CUBE_MAP_ARB, unit->tcubemap);CHECKGLERROR
1683                 }
1684         }
1685         for (unitnum = 0;unitnum < backendarrayunits;unitnum++)
1686         {
1687                 gltextureunit_t *unit = gl_state.units + unitnum;
1688                 // texture array unit is disabled, disable the array
1689                 if (unit->arrayenabled)
1690                 {
1691                         unit->arrayenabled = false;
1692                         GL_ClientActiveTexture(unitnum);
1693                         qglDisableClientState(GL_TEXTURE_COORD_ARRAY);CHECKGLERROR
1694                 }
1695         }
1696         for (unitnum = 0;unitnum < backendunits;unitnum++)
1697         {
1698                 gltextureunit_t *unit = gl_state.units + unitnum;
1699                 // no texmatrix specified, revert to identity
1700                 if (unit->texmatrixenabled)
1701                 {
1702                         unit->texmatrixenabled = false;
1703                         CHECKGLERROR
1704                         qglMatrixMode(GL_TEXTURE);CHECKGLERROR
1705                         GL_ActiveTexture(unitnum);
1706                         qglLoadIdentity();CHECKGLERROR
1707                         qglMatrixMode(GL_MODELVIEW);CHECKGLERROR
1708                 }
1709                 if (gl_combine.integer)
1710                 {
1711                         // GL_ARB_texture_env_combine
1712                         if (unit->combinergb != GL_MODULATE)
1713                         {
1714                                 unit->combinergb = GL_MODULATE;
1715                                 GL_ActiveTexture(unitnum);
1716                                 qglTexEnvi(GL_TEXTURE_ENV, GL_COMBINE_RGB_ARB, unit->combinergb);CHECKGLERROR
1717                         }
1718                         if (unit->combinealpha != GL_MODULATE)
1719                         {
1720                                 unit->combinealpha = GL_MODULATE;
1721                                 GL_ActiveTexture(unitnum);
1722                                 qglTexEnvi(GL_TEXTURE_ENV, GL_COMBINE_ALPHA_ARB, unit->combinealpha);CHECKGLERROR
1723                         }
1724                         if (unit->rgbscale != 1)
1725                         {
1726                                 GL_ActiveTexture(unitnum);
1727                                 qglTexEnvi(GL_TEXTURE_ENV, GL_RGB_SCALE_ARB, (unit->rgbscale = 1));CHECKGLERROR
1728                         }
1729                         if (unit->alphascale != 1)
1730                         {
1731                                 GL_ActiveTexture(unitnum);
1732                                 qglTexEnvi(GL_TEXTURE_ENV, GL_ALPHA_SCALE, (unit->alphascale = 1));CHECKGLERROR
1733                         }
1734                 }
1735                 else
1736                 {
1737                         // normal GL texenv
1738                         if (unit->combinergb != GL_MODULATE)
1739                         {
1740                                 unit->combinergb = GL_MODULATE;
1741                                 GL_ActiveTexture(unitnum);
1742                                 qglTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, unit->combinergb);CHECKGLERROR
1743                         }
1744                 }
1745         }
1746 }
1747
1748 void R_Mesh_Draw_ShowTris(int firstvertex, int numvertices, int numtriangles, const int *elements)
1749 {
1750         CHECKGLERROR
1751         qglBegin(GL_LINES);
1752         for (;numtriangles;numtriangles--, elements += 3)
1753         {
1754                 qglArrayElement(elements[0]);qglArrayElement(elements[1]);
1755                 qglArrayElement(elements[1]);qglArrayElement(elements[2]);
1756                 qglArrayElement(elements[2]);qglArrayElement(elements[0]);
1757         }
1758         qglEnd();
1759         CHECKGLERROR
1760 }