]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/qgl.cpp
Merge commit '830125fad042fad35dc029b6eb57c8156ad7e176'
[xonotic/netradiant.git] / radiant / qgl.cpp
1 /*
2    Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3    For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22
23 #include "qgl.h"
24
25 #include "debugging/debugging.h"
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #if defined( _WIN32 )
32 #define WINGDIAPI __declspec( dllimport )
33 #define APIENTRY __stdcall
34 #endif
35
36 #include <GL/gl.h>
37
38 #if defined( _WIN32 )
39 #undef WINGDIAPI
40 #undef APIENTRY
41 #endif
42
43 #include "igl.h"
44
45
46
47
48 #if defined( _WIN32 )
49
50 #include <wtypes.h>
51
52 PROC ( WINAPI * qwglGetProcAddress )( LPCSTR );
53
54 #elif defined ( XWINDOWS )
55
56 #include <GL/glx.h>
57 #include <dlfcn.h>
58 #include <gdk/gdkx.h>
59
60 Bool ( *qglXQueryExtension )( Display *dpy, int *errorb, int *event );
61 void*        ( *qglXGetProcAddressARB )( const GLubyte * procName );
62 typedef void* ( *glXGetProcAddressARBProc )( const GLubyte *procName );
63
64 #else
65 #error "unsupported platform"
66 #endif
67
68
69 void QGL_Shutdown( OpenGLBinding& table ){
70         globalOutputStream() << "Shutting down OpenGL module...";
71
72 #if defined( WIN32 )
73         qwglGetProcAddress           = 0;
74 #elif defined( XWINDOWS )
75         qglXQueryExtension           = glXQueryExtension;
76         qglXGetProcAddressARB        = 0;
77 #else
78 #error "unsupported platform"
79 #endif
80
81         globalOutputStream() << "Done.\n";
82 }
83
84
85 typedef struct glu_error_struct
86 {
87         GLenum errnum;
88         const char *errstr;
89 } GLU_ERROR_STRUCT;
90
91 GLU_ERROR_STRUCT glu_errlist[] = {
92         {GL_NO_ERROR, "GL_NO_ERROR - no error"},
93         {GL_INVALID_ENUM, "GL_INVALID_ENUM - An unacceptable value is specified for an enumerated argument."},
94         {GL_INVALID_VALUE, "GL_INVALID_VALUE - A numeric argument is out of range."},
95         {GL_INVALID_OPERATION, "GL_INVALID_OPERATION - The specified operation is not allowed in the current state."},
96         {GL_STACK_OVERFLOW, "GL_STACK_OVERFLOW - Function would cause a stack overflow."},
97         {GL_STACK_UNDERFLOW, "GL_STACK_UNDERFLOW - Function would cause a stack underflow."},
98         {GL_OUT_OF_MEMORY, "GL_OUT_OF_MEMORY - There is not enough memory left to execute the function."},
99         {0, 0}
100 };
101
102 const GLubyte* qgluErrorString( GLenum errCode ){
103         int search = 0;
104         for ( search = 0; glu_errlist[search].errstr; search++ )
105         {
106                 if ( errCode == glu_errlist[search].errnum ) {
107                         return (const GLubyte *)glu_errlist[search].errstr;
108                 }
109         } //end for
110         return (const GLubyte *)"Unknown error";
111 }
112
113
114 void glInvalidFunction(){
115         ERROR_MESSAGE( "calling an invalid OpenGL function" );
116 }
117
118 #define EXTENSIONS_ENABLED 1
119
120 bool QGL_ExtensionSupported( const char* extension ){
121 #if EXTENSIONS_ENABLED
122         const GLubyte *extensions = 0;
123         const GLubyte *start;
124         GLubyte *where, *terminator;
125
126         // Extension names should not have spaces.
127         where = (GLubyte *) strchr( extension, ' ' );
128         if ( where || *extension == '\0' ) {
129                 return false;
130         }
131
132         extensions = GlobalOpenGL().m_glGetString( GL_EXTENSIONS );
133 #ifndef __APPLE__
134         if ( !extensions ) {
135                 return false;
136         }
137 #endif
138
139         // It takes a bit of care to be fool-proof about parsing the
140         // OpenGL extensions string. Don't be fooled by sub-strings, etc.
141         for ( start = extensions; ; )
142         {
143                 where = (GLubyte *) strstr( (const char *) start, extension );
144                 if ( !where ) {
145                         break;
146                 }
147
148                 terminator = where + strlen( extension );
149                 if ( where == start || *( where - 1 ) == ' ' ) {
150                         if ( *terminator == ' ' || *terminator == '\0' ) {
151                                 return true;
152                         }
153                 }
154
155                 start = terminator;
156         }
157 #endif
158
159         return false;
160 }
161
162 typedef int ( QGL_DLLEXPORT * QGLFunctionPointer )();
163
164 QGLFunctionPointer QGL_getExtensionFunc( const char* symbol ){
165 #if defined( XWINDOWS )
166         //ASSERT_NOTNULL(qglXGetProcAddressARB);
167         if ( qglXGetProcAddressARB == 0 ) {
168                 return reinterpret_cast<QGLFunctionPointer>( glInvalidFunction );
169         }
170         else
171         {
172                 return (QGLFunctionPointer)qglXGetProcAddressARB( reinterpret_cast<const GLubyte*>( symbol ) );
173         }
174 #elif defined( WIN32 )
175         ASSERT_NOTNULL( qwglGetProcAddress );
176         return qwglGetProcAddress( symbol );
177 #else
178 #error "unsupported platform"
179 #endif
180 }
181
182
183 template<typename Func>
184 bool QGL_constructExtensionFunc( Func& func, const char* symbol ){
185         func = reinterpret_cast<Func>( QGL_getExtensionFunc( symbol ) );
186         return func != 0;
187 }
188
189 template<typename Func>
190 void QGL_invalidateExtensionFunc( Func& func ){
191         func = reinterpret_cast<Func>( glInvalidFunction );
192 }
193
194 void QGL_clear( OpenGLBinding& table ){
195         QGL_invalidateExtensionFunc( table.m_glAccum );
196         QGL_invalidateExtensionFunc( table.m_glAlphaFunc );
197         QGL_invalidateExtensionFunc( table.m_glAreTexturesResident );
198         QGL_invalidateExtensionFunc( table.m_glArrayElement );
199         QGL_invalidateExtensionFunc( table.m_glBegin );
200         QGL_invalidateExtensionFunc( table.m_glBindTexture );
201         QGL_invalidateExtensionFunc( table.m_glBitmap );
202         QGL_invalidateExtensionFunc( table.m_glBlendFunc );
203         QGL_invalidateExtensionFunc( table.m_glCallList );
204         QGL_invalidateExtensionFunc( table.m_glCallLists );
205         QGL_invalidateExtensionFunc( table.m_glClear );
206         QGL_invalidateExtensionFunc( table.m_glClearAccum );
207         QGL_invalidateExtensionFunc( table.m_glClearColor );
208         QGL_invalidateExtensionFunc( table.m_glClearDepth );
209         QGL_invalidateExtensionFunc( table.m_glClearIndex );
210         QGL_invalidateExtensionFunc( table.m_glClearStencil );
211         QGL_invalidateExtensionFunc( table.m_glClipPlane );
212         QGL_invalidateExtensionFunc( table.m_glColor3b );
213         QGL_invalidateExtensionFunc( table.m_glColor3bv );
214         QGL_invalidateExtensionFunc( table.m_glColor3d );
215         QGL_invalidateExtensionFunc( table.m_glColor3dv );
216         QGL_invalidateExtensionFunc( table.m_glColor3f );
217         QGL_invalidateExtensionFunc( table.m_glColor3fv );
218         QGL_invalidateExtensionFunc( table.m_glColor3i );
219         QGL_invalidateExtensionFunc( table.m_glColor3iv );
220         QGL_invalidateExtensionFunc( table.m_glColor3s );
221         QGL_invalidateExtensionFunc( table.m_glColor3sv );
222         QGL_invalidateExtensionFunc( table.m_glColor3ub );
223         QGL_invalidateExtensionFunc( table.m_glColor3ubv );
224         QGL_invalidateExtensionFunc( table.m_glColor3ui );
225         QGL_invalidateExtensionFunc( table.m_glColor3uiv );
226         QGL_invalidateExtensionFunc( table.m_glColor3us );
227         QGL_invalidateExtensionFunc( table.m_glColor3usv );
228         QGL_invalidateExtensionFunc( table.m_glColor4b );
229         QGL_invalidateExtensionFunc( table.m_glColor4bv );
230         QGL_invalidateExtensionFunc( table.m_glColor4d );
231         QGL_invalidateExtensionFunc( table.m_glColor4dv );
232         QGL_invalidateExtensionFunc( table.m_glColor4f );
233         QGL_invalidateExtensionFunc( table.m_glColor4fv );
234         QGL_invalidateExtensionFunc( table.m_glColor4i );
235         QGL_invalidateExtensionFunc( table.m_glColor4iv );
236         QGL_invalidateExtensionFunc( table.m_glColor4s );
237         QGL_invalidateExtensionFunc( table.m_glColor4sv );
238         QGL_invalidateExtensionFunc( table.m_glColor4ub );
239         QGL_invalidateExtensionFunc( table.m_glColor4ubv );
240         QGL_invalidateExtensionFunc( table.m_glColor4ui );
241         QGL_invalidateExtensionFunc( table.m_glColor4uiv );
242         QGL_invalidateExtensionFunc( table.m_glColor4us );
243         QGL_invalidateExtensionFunc( table.m_glColor4usv );
244         QGL_invalidateExtensionFunc( table.m_glColorMask );
245         QGL_invalidateExtensionFunc( table.m_glColorMaterial );
246         QGL_invalidateExtensionFunc( table.m_glColorPointer );
247         QGL_invalidateExtensionFunc( table.m_glCopyPixels );
248         QGL_invalidateExtensionFunc( table.m_glCopyTexImage1D );
249         QGL_invalidateExtensionFunc( table.m_glCopyTexImage2D );
250         QGL_invalidateExtensionFunc( table.m_glCopyTexSubImage1D );
251         QGL_invalidateExtensionFunc( table.m_glCopyTexSubImage2D );
252         QGL_invalidateExtensionFunc( table.m_glCullFace );
253         QGL_invalidateExtensionFunc( table.m_glDeleteLists );
254         QGL_invalidateExtensionFunc( table.m_glDeleteTextures );
255         QGL_invalidateExtensionFunc( table.m_glDepthFunc );
256         QGL_invalidateExtensionFunc( table.m_glDepthMask );
257         QGL_invalidateExtensionFunc( table.m_glDepthRange );
258         QGL_invalidateExtensionFunc( table.m_glDisable );
259         QGL_invalidateExtensionFunc( table.m_glDisableClientState );
260         QGL_invalidateExtensionFunc( table.m_glDrawArrays );
261         QGL_invalidateExtensionFunc( table.m_glDrawBuffer );
262         QGL_invalidateExtensionFunc( table.m_glDrawElements );
263         QGL_invalidateExtensionFunc( table.m_glDrawPixels );
264         QGL_invalidateExtensionFunc( table.m_glEdgeFlag );
265         QGL_invalidateExtensionFunc( table.m_glEdgeFlagPointer );
266         QGL_invalidateExtensionFunc( table.m_glEdgeFlagv );
267         QGL_invalidateExtensionFunc( table.m_glEnable );
268         QGL_invalidateExtensionFunc( table.m_glEnableClientState );
269         QGL_invalidateExtensionFunc( table.m_glEnd );
270         QGL_invalidateExtensionFunc( table.m_glEndList );
271         QGL_invalidateExtensionFunc( table.m_glEvalCoord1d );
272         QGL_invalidateExtensionFunc( table.m_glEvalCoord1dv );
273         QGL_invalidateExtensionFunc( table.m_glEvalCoord1f );
274         QGL_invalidateExtensionFunc( table.m_glEvalCoord1fv );
275         QGL_invalidateExtensionFunc( table.m_glEvalCoord2d );
276         QGL_invalidateExtensionFunc( table.m_glEvalCoord2dv );
277         QGL_invalidateExtensionFunc( table.m_glEvalCoord2f );
278         QGL_invalidateExtensionFunc( table.m_glEvalCoord2fv );
279         QGL_invalidateExtensionFunc( table.m_glEvalMesh1 );
280         QGL_invalidateExtensionFunc( table.m_glEvalMesh2 );
281         QGL_invalidateExtensionFunc( table.m_glEvalPoint1 );
282         QGL_invalidateExtensionFunc( table.m_glEvalPoint2 );
283         QGL_invalidateExtensionFunc( table.m_glFeedbackBuffer );
284         QGL_invalidateExtensionFunc( table.m_glFinish );
285         QGL_invalidateExtensionFunc( table.m_glFlush );
286         QGL_invalidateExtensionFunc( table.m_glFogf );
287         QGL_invalidateExtensionFunc( table.m_glFogfv );
288         QGL_invalidateExtensionFunc( table.m_glFogi );
289         QGL_invalidateExtensionFunc( table.m_glFogiv );
290         QGL_invalidateExtensionFunc( table.m_glFrontFace );
291         QGL_invalidateExtensionFunc( table.m_glFrustum );
292         QGL_invalidateExtensionFunc( table.m_glGenLists );
293         QGL_invalidateExtensionFunc( table.m_glGenTextures );
294         QGL_invalidateExtensionFunc( table.m_glGetBooleanv );
295         QGL_invalidateExtensionFunc( table.m_glGetClipPlane );
296         QGL_invalidateExtensionFunc( table.m_glGetDoublev );
297         QGL_invalidateExtensionFunc( table.m_glGetError );
298         QGL_invalidateExtensionFunc( table.m_glGetFloatv );
299         QGL_invalidateExtensionFunc( table.m_glGetIntegerv );
300         QGL_invalidateExtensionFunc( table.m_glGetLightfv );
301         QGL_invalidateExtensionFunc( table.m_glGetLightiv );
302         QGL_invalidateExtensionFunc( table.m_glGetMapdv );
303         QGL_invalidateExtensionFunc( table.m_glGetMapfv );
304         QGL_invalidateExtensionFunc( table.m_glGetMapiv );
305         QGL_invalidateExtensionFunc( table.m_glGetMaterialfv );
306         QGL_invalidateExtensionFunc( table.m_glGetMaterialiv );
307         QGL_invalidateExtensionFunc( table.m_glGetPixelMapfv );
308         QGL_invalidateExtensionFunc( table.m_glGetPixelMapuiv );
309         QGL_invalidateExtensionFunc( table.m_glGetPixelMapusv );
310         QGL_invalidateExtensionFunc( table.m_glGetPointerv );
311         QGL_invalidateExtensionFunc( table.m_glGetPolygonStipple );
312         table.m_glGetString = glGetString;
313         QGL_invalidateExtensionFunc( table.m_glGetTexEnvfv );
314         QGL_invalidateExtensionFunc( table.m_glGetTexEnviv );
315         QGL_invalidateExtensionFunc( table.m_glGetTexGendv );
316         QGL_invalidateExtensionFunc( table.m_glGetTexGenfv );
317         QGL_invalidateExtensionFunc( table.m_glGetTexGeniv );
318         QGL_invalidateExtensionFunc( table.m_glGetTexImage );
319         QGL_invalidateExtensionFunc( table.m_glGetTexLevelParameterfv );
320         QGL_invalidateExtensionFunc( table.m_glGetTexLevelParameteriv );
321         QGL_invalidateExtensionFunc( table.m_glGetTexParameterfv );
322         QGL_invalidateExtensionFunc( table.m_glGetTexParameteriv );
323         QGL_invalidateExtensionFunc( table.m_glHint );
324         QGL_invalidateExtensionFunc( table.m_glIndexMask );
325         QGL_invalidateExtensionFunc( table.m_glIndexPointer );
326         QGL_invalidateExtensionFunc( table.m_glIndexd );
327         QGL_invalidateExtensionFunc( table.m_glIndexdv );
328         QGL_invalidateExtensionFunc( table.m_glIndexf );
329         QGL_invalidateExtensionFunc( table.m_glIndexfv );
330         QGL_invalidateExtensionFunc( table.m_glIndexi );
331         QGL_invalidateExtensionFunc( table.m_glIndexiv );
332         QGL_invalidateExtensionFunc( table.m_glIndexs );
333         QGL_invalidateExtensionFunc( table.m_glIndexsv );
334         QGL_invalidateExtensionFunc( table.m_glIndexub );
335         QGL_invalidateExtensionFunc( table.m_glIndexubv );
336         QGL_invalidateExtensionFunc( table.m_glInitNames );
337         QGL_invalidateExtensionFunc( table.m_glInterleavedArrays );
338         QGL_invalidateExtensionFunc( table.m_glIsEnabled );
339         QGL_invalidateExtensionFunc( table.m_glIsList );
340         QGL_invalidateExtensionFunc( table.m_glIsTexture );
341         QGL_invalidateExtensionFunc( table.m_glLightModelf );
342         QGL_invalidateExtensionFunc( table.m_glLightModelfv );
343         QGL_invalidateExtensionFunc( table.m_glLightModeli );
344         QGL_invalidateExtensionFunc( table.m_glLightModeliv );
345         QGL_invalidateExtensionFunc( table.m_glLightf );
346         QGL_invalidateExtensionFunc( table.m_glLightfv );
347         QGL_invalidateExtensionFunc( table.m_glLighti );
348         QGL_invalidateExtensionFunc( table.m_glLightiv );
349         QGL_invalidateExtensionFunc( table.m_glLineStipple );
350         QGL_invalidateExtensionFunc( table.m_glLineWidth );
351         QGL_invalidateExtensionFunc( table.m_glListBase );
352         QGL_invalidateExtensionFunc( table.m_glLoadIdentity );
353         QGL_invalidateExtensionFunc( table.m_glLoadMatrixd );
354         QGL_invalidateExtensionFunc( table.m_glLoadMatrixf );
355         QGL_invalidateExtensionFunc( table.m_glLoadName );
356         QGL_invalidateExtensionFunc( table.m_glLogicOp );
357         QGL_invalidateExtensionFunc( table.m_glMap1d );
358         QGL_invalidateExtensionFunc( table.m_glMap1f );
359         QGL_invalidateExtensionFunc( table.m_glMap2d );
360         QGL_invalidateExtensionFunc( table.m_glMap2f );
361         QGL_invalidateExtensionFunc( table.m_glMapGrid1d );
362         QGL_invalidateExtensionFunc( table.m_glMapGrid1f );
363         QGL_invalidateExtensionFunc( table.m_glMapGrid2d );
364         QGL_invalidateExtensionFunc( table.m_glMapGrid2f );
365         QGL_invalidateExtensionFunc( table.m_glMaterialf );
366         QGL_invalidateExtensionFunc( table.m_glMaterialfv );
367         QGL_invalidateExtensionFunc( table.m_glMateriali );
368         QGL_invalidateExtensionFunc( table.m_glMaterialiv );
369         QGL_invalidateExtensionFunc( table.m_glMatrixMode );
370         QGL_invalidateExtensionFunc( table.m_glMultMatrixd );
371         QGL_invalidateExtensionFunc( table.m_glMultMatrixf );
372         QGL_invalidateExtensionFunc( table.m_glNewList );
373         QGL_invalidateExtensionFunc( table.m_glNormal3b );
374         QGL_invalidateExtensionFunc( table.m_glNormal3bv );
375         QGL_invalidateExtensionFunc( table.m_glNormal3d );
376         QGL_invalidateExtensionFunc( table.m_glNormal3dv );
377         QGL_invalidateExtensionFunc( table.m_glNormal3f );
378         QGL_invalidateExtensionFunc( table.m_glNormal3fv );
379         QGL_invalidateExtensionFunc( table.m_glNormal3i );
380         QGL_invalidateExtensionFunc( table.m_glNormal3iv );
381         QGL_invalidateExtensionFunc( table.m_glNormal3s );
382         QGL_invalidateExtensionFunc( table.m_glNormal3sv );
383         QGL_invalidateExtensionFunc( table.m_glNormalPointer );
384         QGL_invalidateExtensionFunc( table.m_glOrtho );
385         QGL_invalidateExtensionFunc( table.m_glPassThrough );
386         QGL_invalidateExtensionFunc( table.m_glPixelMapfv );
387         QGL_invalidateExtensionFunc( table.m_glPixelMapuiv );
388         QGL_invalidateExtensionFunc( table.m_glPixelMapusv );
389         QGL_invalidateExtensionFunc( table.m_glPixelStoref );
390         QGL_invalidateExtensionFunc( table.m_glPixelStorei );
391         QGL_invalidateExtensionFunc( table.m_glPixelTransferf );
392         QGL_invalidateExtensionFunc( table.m_glPixelTransferi );
393         QGL_invalidateExtensionFunc( table.m_glPixelZoom );
394         QGL_invalidateExtensionFunc( table.m_glPointSize );
395         QGL_invalidateExtensionFunc( table.m_glPolygonMode );
396         QGL_invalidateExtensionFunc( table.m_glPolygonOffset );
397         QGL_invalidateExtensionFunc( table.m_glPolygonStipple );
398         QGL_invalidateExtensionFunc( table.m_glPopAttrib );
399         QGL_invalidateExtensionFunc( table.m_glPopClientAttrib );
400         QGL_invalidateExtensionFunc( table.m_glPopMatrix );
401         QGL_invalidateExtensionFunc( table.m_glPopName );
402         QGL_invalidateExtensionFunc( table.m_glPrioritizeTextures );
403         QGL_invalidateExtensionFunc( table.m_glPushAttrib );
404         QGL_invalidateExtensionFunc( table.m_glPushClientAttrib );
405         QGL_invalidateExtensionFunc( table.m_glPushMatrix );
406         QGL_invalidateExtensionFunc( table.m_glPushName );
407         QGL_invalidateExtensionFunc( table.m_glRasterPos2d );
408         QGL_invalidateExtensionFunc( table.m_glRasterPos2dv );
409         QGL_invalidateExtensionFunc( table.m_glRasterPos2f );
410         QGL_invalidateExtensionFunc( table.m_glRasterPos2fv );
411         QGL_invalidateExtensionFunc( table.m_glRasterPos2i );
412         QGL_invalidateExtensionFunc( table.m_glRasterPos2iv );
413         QGL_invalidateExtensionFunc( table.m_glRasterPos2s );
414         QGL_invalidateExtensionFunc( table.m_glRasterPos2sv );
415         QGL_invalidateExtensionFunc( table.m_glRasterPos3d );
416         QGL_invalidateExtensionFunc( table.m_glRasterPos3dv );
417         QGL_invalidateExtensionFunc( table.m_glRasterPos3f );
418         QGL_invalidateExtensionFunc( table.m_glRasterPos3fv );
419         QGL_invalidateExtensionFunc( table.m_glRasterPos3i );
420         QGL_invalidateExtensionFunc( table.m_glRasterPos3iv );
421         QGL_invalidateExtensionFunc( table.m_glRasterPos3s );
422         QGL_invalidateExtensionFunc( table.m_glRasterPos3sv );
423         QGL_invalidateExtensionFunc( table.m_glRasterPos4d );
424         QGL_invalidateExtensionFunc( table.m_glRasterPos4dv );
425         QGL_invalidateExtensionFunc( table.m_glRasterPos4f );
426         QGL_invalidateExtensionFunc( table.m_glRasterPos4fv );
427         QGL_invalidateExtensionFunc( table.m_glRasterPos4i );
428         QGL_invalidateExtensionFunc( table.m_glRasterPos4iv );
429         QGL_invalidateExtensionFunc( table.m_glRasterPos4s );
430         QGL_invalidateExtensionFunc( table.m_glRasterPos4sv );
431         QGL_invalidateExtensionFunc( table.m_glReadBuffer );
432         QGL_invalidateExtensionFunc( table.m_glReadPixels );
433         QGL_invalidateExtensionFunc( table.m_glRectd );
434         QGL_invalidateExtensionFunc( table.m_glRectdv );
435         QGL_invalidateExtensionFunc( table.m_glRectf );
436         QGL_invalidateExtensionFunc( table.m_glRectfv );
437         QGL_invalidateExtensionFunc( table.m_glRecti );
438         QGL_invalidateExtensionFunc( table.m_glRectiv );
439         QGL_invalidateExtensionFunc( table.m_glRects );
440         QGL_invalidateExtensionFunc( table.m_glRectsv );
441         QGL_invalidateExtensionFunc( table.m_glRenderMode );
442         QGL_invalidateExtensionFunc( table.m_glRotated );
443         QGL_invalidateExtensionFunc( table.m_glRotatef );
444         QGL_invalidateExtensionFunc( table.m_glScaled );
445         QGL_invalidateExtensionFunc( table.m_glScalef );
446         QGL_invalidateExtensionFunc( table.m_glScissor );
447         QGL_invalidateExtensionFunc( table.m_glSelectBuffer );
448         QGL_invalidateExtensionFunc( table.m_glShadeModel );
449         QGL_invalidateExtensionFunc( table.m_glStencilFunc );
450         QGL_invalidateExtensionFunc( table.m_glStencilMask );
451         QGL_invalidateExtensionFunc( table.m_glStencilOp );
452         QGL_invalidateExtensionFunc( table.m_glTexCoord1d );
453         QGL_invalidateExtensionFunc( table.m_glTexCoord1dv );
454         QGL_invalidateExtensionFunc( table.m_glTexCoord1f );
455         QGL_invalidateExtensionFunc( table.m_glTexCoord1fv );
456         QGL_invalidateExtensionFunc( table.m_glTexCoord1i );
457         QGL_invalidateExtensionFunc( table.m_glTexCoord1iv );
458         QGL_invalidateExtensionFunc( table.m_glTexCoord1s );
459         QGL_invalidateExtensionFunc( table.m_glTexCoord1sv );
460         QGL_invalidateExtensionFunc( table.m_glTexCoord2d );
461         QGL_invalidateExtensionFunc( table.m_glTexCoord2dv );
462         QGL_invalidateExtensionFunc( table.m_glTexCoord2f );
463         QGL_invalidateExtensionFunc( table.m_glTexCoord2fv );
464         QGL_invalidateExtensionFunc( table.m_glTexCoord2i );
465         QGL_invalidateExtensionFunc( table.m_glTexCoord2iv );
466         QGL_invalidateExtensionFunc( table.m_glTexCoord2s );
467         QGL_invalidateExtensionFunc( table.m_glTexCoord2sv );
468         QGL_invalidateExtensionFunc( table.m_glTexCoord3d );
469         QGL_invalidateExtensionFunc( table.m_glTexCoord3dv );
470         QGL_invalidateExtensionFunc( table.m_glTexCoord3f );
471         QGL_invalidateExtensionFunc( table.m_glTexCoord3fv );
472         QGL_invalidateExtensionFunc( table.m_glTexCoord3i );
473         QGL_invalidateExtensionFunc( table.m_glTexCoord3iv );
474         QGL_invalidateExtensionFunc( table.m_glTexCoord3s );
475         QGL_invalidateExtensionFunc( table.m_glTexCoord3sv );
476         QGL_invalidateExtensionFunc( table.m_glTexCoord4d );
477         QGL_invalidateExtensionFunc( table.m_glTexCoord4dv );
478         QGL_invalidateExtensionFunc( table.m_glTexCoord4f );
479         QGL_invalidateExtensionFunc( table.m_glTexCoord4fv );
480         QGL_invalidateExtensionFunc( table.m_glTexCoord4i );
481         QGL_invalidateExtensionFunc( table.m_glTexCoord4iv );
482         QGL_invalidateExtensionFunc( table.m_glTexCoord4s );
483         QGL_invalidateExtensionFunc( table.m_glTexCoord4sv );
484         QGL_invalidateExtensionFunc( table.m_glTexCoordPointer );
485         QGL_invalidateExtensionFunc( table.m_glTexEnvf );
486         QGL_invalidateExtensionFunc( table.m_glTexEnvfv );
487         QGL_invalidateExtensionFunc( table.m_glTexEnvi );
488         QGL_invalidateExtensionFunc( table.m_glTexEnviv );
489         QGL_invalidateExtensionFunc( table.m_glTexGend );
490         QGL_invalidateExtensionFunc( table.m_glTexGendv );
491         QGL_invalidateExtensionFunc( table.m_glTexGenf );
492         QGL_invalidateExtensionFunc( table.m_glTexGenfv );
493         QGL_invalidateExtensionFunc( table.m_glTexGeni );
494         QGL_invalidateExtensionFunc( table.m_glTexGeniv );
495         QGL_invalidateExtensionFunc( table.m_glTexImage1D );
496         QGL_invalidateExtensionFunc( table.m_glTexImage2D );
497         QGL_invalidateExtensionFunc( table.m_glTexParameterf );
498         QGL_invalidateExtensionFunc( table.m_glTexParameterfv );
499         QGL_invalidateExtensionFunc( table.m_glTexParameteri );
500         QGL_invalidateExtensionFunc( table.m_glTexParameteriv );
501         QGL_invalidateExtensionFunc( table.m_glTexSubImage1D );
502         QGL_invalidateExtensionFunc( table.m_glTexSubImage2D );
503         QGL_invalidateExtensionFunc( table.m_glTranslated );
504         QGL_invalidateExtensionFunc( table.m_glTranslatef );
505         QGL_invalidateExtensionFunc( table.m_glVertex2d );
506         QGL_invalidateExtensionFunc( table.m_glVertex2dv );
507         QGL_invalidateExtensionFunc( table.m_glVertex2f );
508         QGL_invalidateExtensionFunc( table.m_glVertex2fv );
509         QGL_invalidateExtensionFunc( table.m_glVertex2i );
510         QGL_invalidateExtensionFunc( table.m_glVertex2iv );
511         QGL_invalidateExtensionFunc( table.m_glVertex2s );
512         QGL_invalidateExtensionFunc( table.m_glVertex2sv );
513         QGL_invalidateExtensionFunc( table.m_glVertex3d );
514         QGL_invalidateExtensionFunc( table.m_glVertex3dv );
515         QGL_invalidateExtensionFunc( table.m_glVertex3f );
516         QGL_invalidateExtensionFunc( table.m_glVertex3fv );
517         QGL_invalidateExtensionFunc( table.m_glVertex3i );
518         QGL_invalidateExtensionFunc( table.m_glVertex3iv );
519         QGL_invalidateExtensionFunc( table.m_glVertex3s );
520         QGL_invalidateExtensionFunc( table.m_glVertex3sv );
521         QGL_invalidateExtensionFunc( table.m_glVertex4d );
522         QGL_invalidateExtensionFunc( table.m_glVertex4dv );
523         QGL_invalidateExtensionFunc( table.m_glVertex4f );
524         QGL_invalidateExtensionFunc( table.m_glVertex4fv );
525         QGL_invalidateExtensionFunc( table.m_glVertex4i );
526         QGL_invalidateExtensionFunc( table.m_glVertex4iv );
527         QGL_invalidateExtensionFunc( table.m_glVertex4s );
528         QGL_invalidateExtensionFunc( table.m_glVertex4sv );
529         QGL_invalidateExtensionFunc( table.m_glVertexPointer );
530         QGL_invalidateExtensionFunc( table.m_glViewport );
531 }
532
533 int QGL_Init( OpenGLBinding& table ){
534         QGL_clear( table );
535
536 #if defined( WIN32 )
537         qwglGetProcAddress           = wglGetProcAddress;
538 #elif defined( XWINDOWS )
539         qglXGetProcAddressARB = (glXGetProcAddressARBProc)dlsym( RTLD_DEFAULT, "glXGetProcAddressARB" );
540         if ( ( qglXQueryExtension == 0 ) || ( qglXQueryExtension( GDK_DISPLAY(),0,0 ) != True ) ) {
541                 return 0;
542         }
543 #else
544 #error "unsupported platform"
545 #endif
546
547         return 1;
548 }
549
550 int g_qglMajorVersion = 0;
551 int g_qglMinorVersion = 0;
552
553 // requires a valid gl context
554 void QGL_InitVersion(){
555 #if EXTENSIONS_ENABLED
556         const std::size_t versionSize = 256;
557         char version[versionSize];
558         strncpy( version, reinterpret_cast<const char*>( GlobalOpenGL().m_glGetString( GL_VERSION ) ), versionSize - 1 );
559         version[versionSize - 1] = '\0';
560         char* firstDot = strchr( version, '.' );
561         ASSERT_NOTNULL( firstDot );
562         *firstDot = '\0';
563         g_qglMajorVersion = atoi( version );
564         char* secondDot = strchr( firstDot + 1, '.' );
565         if ( secondDot != 0 ) {
566                 *secondDot = '\0';
567         }
568         g_qglMinorVersion = atoi( firstDot + 1 );
569 #else
570         g_qglMajorVersion = 1;
571         g_qglMinorVersion = 1;
572 #endif
573 }
574
575
576 inline void extension_not_implemented( const char* extension ){
577         globalErrorStream() << "WARNING: OpenGL driver reports support for " << extension << " but does not implement it\n";
578 }
579
580 float g_maxTextureAnisotropy;
581
582 float QGL_maxTextureAnisotropy(){
583         return g_maxTextureAnisotropy;
584 }
585
586 void QGL_sharedContextCreated( OpenGLBinding& table ){
587         QGL_InitVersion();
588
589         table.major_version = g_qglMajorVersion;
590         table.minor_version = g_qglMinorVersion;
591
592         table.m_glAccum                     = glAccum;
593         table.m_glAlphaFunc                 = glAlphaFunc;
594         table.m_glAreTexturesResident       = glAreTexturesResident;
595         table.m_glArrayElement              = glArrayElement;
596         table.m_glBegin                     = glBegin;
597         table.m_glBindTexture               = glBindTexture;
598         table.m_glBitmap                    = glBitmap;
599         table.m_glBlendFunc                 = glBlendFunc;
600         table.m_glCallList                  = glCallList;
601         table.m_glCallLists                 = glCallLists;
602         table.m_glClear                     = glClear;
603         table.m_glClearAccum                = glClearAccum;
604         table.m_glClearColor                = glClearColor;
605         table.m_glClearDepth                = glClearDepth;
606         table.m_glClearIndex                = glClearIndex;
607         table.m_glClearStencil              = glClearStencil;
608         table.m_glClipPlane                 = glClipPlane;
609         table.m_glColor3b                   = glColor3b;
610         table.m_glColor3bv                  = glColor3bv;
611         table.m_glColor3d                   = glColor3d;
612         table.m_glColor3dv                  = glColor3dv;
613         table.m_glColor3f                   = glColor3f;
614         table.m_glColor3fv                  = glColor3fv;
615         table.m_glColor3i                   = glColor3i;
616         table.m_glColor3iv                  = glColor3iv;
617         table.m_glColor3s                   = glColor3s;
618         table.m_glColor3sv                  = glColor3sv;
619         table.m_glColor3ub                  = glColor3ub;
620         table.m_glColor3ubv                 = glColor3ubv;
621         table.m_glColor3ui                  = glColor3ui;
622         table.m_glColor3uiv                 = glColor3uiv;
623         table.m_glColor3us                  = glColor3us;
624         table.m_glColor3usv                 = glColor3usv;
625         table.m_glColor4b                   = glColor4b;
626         table.m_glColor4bv                  = glColor4bv;
627         table.m_glColor4d                   = glColor4d;
628         table.m_glColor4dv                  = glColor4dv;
629         table.m_glColor4f                   = glColor4f;
630         table.m_glColor4fv                  = glColor4fv;
631         table.m_glColor4i                   = glColor4i;
632         table.m_glColor4iv                  = glColor4iv;
633         table.m_glColor4s                   = glColor4s;
634         table.m_glColor4sv                  = glColor4sv;
635         table.m_glColor4ub                  = glColor4ub;
636         table.m_glColor4ubv                 = glColor4ubv;
637         table.m_glColor4ui                  = glColor4ui;
638         table.m_glColor4uiv                 = glColor4uiv;
639         table.m_glColor4us                  = glColor4us;
640         table.m_glColor4usv                 = glColor4usv;
641         table.m_glColorMask                 = glColorMask;
642         table.m_glColorMaterial             = glColorMaterial;
643         table.m_glColorPointer              = glColorPointer;
644         table.m_glCopyPixels                = glCopyPixels;
645         table.m_glCopyTexImage1D            = glCopyTexImage1D;
646         table.m_glCopyTexImage2D            = glCopyTexImage2D;
647         table.m_glCopyTexSubImage1D         = glCopyTexSubImage1D;
648         table.m_glCopyTexSubImage2D         = glCopyTexSubImage2D;
649         table.m_glCullFace                  = glCullFace;
650         table.m_glDeleteLists               = glDeleteLists;
651         table.m_glDeleteTextures            = glDeleteTextures;
652         table.m_glDepthFunc                 = glDepthFunc;
653         table.m_glDepthMask                 = glDepthMask;
654         table.m_glDepthRange                = glDepthRange;
655         table.m_glDisable                   = glDisable;
656         table.m_glDisableClientState        = glDisableClientState;
657         table.m_glDrawArrays                = glDrawArrays;
658         table.m_glDrawBuffer                = glDrawBuffer;
659         table.m_glDrawElements              = glDrawElements;
660         table.m_glDrawPixels                = glDrawPixels;
661         table.m_glEdgeFlag                  = glEdgeFlag;
662         table.m_glEdgeFlagPointer           = glEdgeFlagPointer;
663         table.m_glEdgeFlagv                 = glEdgeFlagv;
664         table.m_glEnable                    = glEnable;
665         table.m_glEnableClientState         = glEnableClientState;
666         table.m_glEnd                       = glEnd;
667         table.m_glEndList                   = glEndList;
668         table.m_glEvalCoord1d               = glEvalCoord1d;
669         table.m_glEvalCoord1dv              = glEvalCoord1dv;
670         table.m_glEvalCoord1f               = glEvalCoord1f;
671         table.m_glEvalCoord1fv              = glEvalCoord1fv;
672         table.m_glEvalCoord2d               = glEvalCoord2d;
673         table.m_glEvalCoord2dv              = glEvalCoord2dv;
674         table.m_glEvalCoord2f               = glEvalCoord2f;
675         table.m_glEvalCoord2fv              = glEvalCoord2fv;
676         table.m_glEvalMesh1                 = glEvalMesh1;
677         table.m_glEvalMesh2                 = glEvalMesh2;
678         table.m_glEvalPoint1                = glEvalPoint1;
679         table.m_glEvalPoint2                = glEvalPoint2;
680         table.m_glFeedbackBuffer            = glFeedbackBuffer;
681         table.m_glFinish                    = glFinish;
682         table.m_glFlush                     = glFlush;
683         table.m_glFogf                      = glFogf;
684         table.m_glFogfv                     = glFogfv;
685         table.m_glFogi                      = glFogi;
686         table.m_glFogiv                     = glFogiv;
687         table.m_glFrontFace                 = glFrontFace;
688         table.m_glFrustum                   = glFrustum;
689         table.m_glGenLists                  = glGenLists;
690         table.m_glGenTextures               = glGenTextures;
691         table.m_glGetBooleanv               = glGetBooleanv;
692         table.m_glGetClipPlane              = glGetClipPlane;
693         table.m_glGetDoublev                = glGetDoublev;
694         table.m_glGetError                  = glGetError;
695         table.m_glGetFloatv                 = glGetFloatv;
696         table.m_glGetIntegerv               = glGetIntegerv;
697         table.m_glGetLightfv                = glGetLightfv;
698         table.m_glGetLightiv                = glGetLightiv;
699         table.m_glGetMapdv                  = glGetMapdv;
700         table.m_glGetMapfv                  = glGetMapfv;
701         table.m_glGetMapiv                  = glGetMapiv;
702         table.m_glGetMaterialfv             = glGetMaterialfv;
703         table.m_glGetMaterialiv             = glGetMaterialiv;
704         table.m_glGetPixelMapfv             = glGetPixelMapfv;
705         table.m_glGetPixelMapuiv            = glGetPixelMapuiv;
706         table.m_glGetPixelMapusv            = glGetPixelMapusv;
707         table.m_glGetPointerv               = glGetPointerv;
708         table.m_glGetPolygonStipple         = glGetPolygonStipple;
709         table.m_glGetString                 = glGetString;
710         table.m_glGetTexEnvfv               = glGetTexEnvfv;
711         table.m_glGetTexEnviv               = glGetTexEnviv;
712         table.m_glGetTexGendv               = glGetTexGendv;
713         table.m_glGetTexGenfv               = glGetTexGenfv;
714         table.m_glGetTexGeniv               = glGetTexGeniv;
715         table.m_glGetTexImage               = glGetTexImage;
716         table.m_glGetTexLevelParameterfv    = glGetTexLevelParameterfv;
717         table.m_glGetTexLevelParameteriv    = glGetTexLevelParameteriv;
718         table.m_glGetTexParameterfv         = glGetTexParameterfv;
719         table.m_glGetTexParameteriv         = glGetTexParameteriv;
720         table.m_glHint                      = glHint;
721         table.m_glIndexMask                 = glIndexMask;
722         table.m_glIndexPointer              = glIndexPointer;
723         table.m_glIndexd                    = glIndexd;
724         table.m_glIndexdv                   = glIndexdv;
725         table.m_glIndexf                    = glIndexf;
726         table.m_glIndexfv                   = glIndexfv;
727         table.m_glIndexi                    = glIndexi;
728         table.m_glIndexiv                   = glIndexiv;
729         table.m_glIndexs                    = glIndexs;
730         table.m_glIndexsv                   = glIndexsv;
731         table.m_glIndexub                   = glIndexub;
732         table.m_glIndexubv                  = glIndexubv;
733         table.m_glInitNames                 = glInitNames;
734         table.m_glInterleavedArrays         = glInterleavedArrays;
735         table.m_glIsEnabled                 = glIsEnabled;
736         table.m_glIsList                    = glIsList;
737         table.m_glIsTexture                 = glIsTexture;
738         table.m_glLightModelf               = glLightModelf;
739         table.m_glLightModelfv              = glLightModelfv;
740         table.m_glLightModeli               = glLightModeli;
741         table.m_glLightModeliv              = glLightModeliv;
742         table.m_glLightf                    = glLightf;
743         table.m_glLightfv                   = glLightfv;
744         table.m_glLighti                    = glLighti;
745         table.m_glLightiv                   = glLightiv;
746         table.m_glLineStipple               = glLineStipple;
747         table.m_glLineWidth                 = glLineWidth;
748         table.m_glListBase                  = glListBase;
749         table.m_glLoadIdentity              = glLoadIdentity;
750         table.m_glLoadMatrixd               = glLoadMatrixd;
751         table.m_glLoadMatrixf               = glLoadMatrixf;
752         table.m_glLoadName                  = glLoadName;
753         table.m_glLogicOp                   = glLogicOp;
754         table.m_glMap1d                     = glMap1d;
755         table.m_glMap1f                     = glMap1f;
756         table.m_glMap2d                     = glMap2d;
757         table.m_glMap2f                     = glMap2f;
758         table.m_glMapGrid1d                 = glMapGrid1d;
759         table.m_glMapGrid1f                 = glMapGrid1f;
760         table.m_glMapGrid2d                 = glMapGrid2d;
761         table.m_glMapGrid2f                 = glMapGrid2f;
762         table.m_glMaterialf                 = glMaterialf;
763         table.m_glMaterialfv                = glMaterialfv;
764         table.m_glMateriali                 = glMateriali;
765         table.m_glMaterialiv                = glMaterialiv;
766         table.m_glMatrixMode                = glMatrixMode;
767         table.m_glMultMatrixd               = glMultMatrixd;
768         table.m_glMultMatrixf               = glMultMatrixf;
769         table.m_glNewList                   = glNewList;
770         table.m_glNormal3b                  = glNormal3b;
771         table.m_glNormal3bv                 = glNormal3bv;
772         table.m_glNormal3d                  = glNormal3d;
773         table.m_glNormal3dv                 = glNormal3dv;
774         table.m_glNormal3f                  = glNormal3f;
775         table.m_glNormal3fv                 = glNormal3fv;
776         table.m_glNormal3i                  = glNormal3i;
777         table.m_glNormal3iv                 = glNormal3iv;
778         table.m_glNormal3s                  = glNormal3s;
779         table.m_glNormal3sv                 = glNormal3sv;
780         table.m_glNormalPointer             = glNormalPointer;
781         table.m_glOrtho                     = glOrtho;
782         table.m_glPassThrough               = glPassThrough;
783         table.m_glPixelMapfv                = glPixelMapfv;
784         table.m_glPixelMapuiv               = glPixelMapuiv;
785         table.m_glPixelMapusv               = glPixelMapusv;
786         table.m_glPixelStoref               = glPixelStoref;
787         table.m_glPixelStorei               = glPixelStorei;
788         table.m_glPixelTransferf            = glPixelTransferf;
789         table.m_glPixelTransferi            = glPixelTransferi;
790         table.m_glPixelZoom                 = glPixelZoom;
791         table.m_glPointSize                 = glPointSize;
792         table.m_glPolygonMode               = glPolygonMode;
793         table.m_glPolygonOffset             = glPolygonOffset;
794         table.m_glPolygonStipple            = glPolygonStipple;
795         table.m_glPopAttrib                 = glPopAttrib;
796         table.m_glPopClientAttrib           = glPopClientAttrib;
797         table.m_glPopMatrix                 = glPopMatrix;
798         table.m_glPopName                   = glPopName;
799         table.m_glPrioritizeTextures        = glPrioritizeTextures;
800         table.m_glPushAttrib                = glPushAttrib;
801         table.m_glPushClientAttrib          = glPushClientAttrib;
802         table.m_glPushMatrix                = glPushMatrix;
803         table.m_glPushName                  = glPushName;
804         table.m_glRasterPos2d               = glRasterPos2d;
805         table.m_glRasterPos2dv              = glRasterPos2dv;
806         table.m_glRasterPos2f               = glRasterPos2f;
807         table.m_glRasterPos2fv              = glRasterPos2fv;
808         table.m_glRasterPos2i               = glRasterPos2i;
809         table.m_glRasterPos2iv              = glRasterPos2iv;
810         table.m_glRasterPos2s               = glRasterPos2s;
811         table.m_glRasterPos2sv              = glRasterPos2sv;
812         table.m_glRasterPos3d               = glRasterPos3d;
813         table.m_glRasterPos3dv              = glRasterPos3dv;
814         table.m_glRasterPos3f               = glRasterPos3f;
815         table.m_glRasterPos3fv              = glRasterPos3fv;
816         table.m_glRasterPos3i               = glRasterPos3i;
817         table.m_glRasterPos3iv              = glRasterPos3iv;
818         table.m_glRasterPos3s               = glRasterPos3s;
819         table.m_glRasterPos3sv              = glRasterPos3sv;
820         table.m_glRasterPos4d               = glRasterPos4d;
821         table.m_glRasterPos4dv              = glRasterPos4dv;
822         table.m_glRasterPos4f               = glRasterPos4f;
823         table.m_glRasterPos4fv              = glRasterPos4fv;
824         table.m_glRasterPos4i               = glRasterPos4i;
825         table.m_glRasterPos4iv              = glRasterPos4iv;
826         table.m_glRasterPos4s               = glRasterPos4s;
827         table.m_glRasterPos4sv              = glRasterPos4sv;
828         table.m_glReadBuffer                = glReadBuffer;
829         table.m_glReadPixels                = glReadPixels;
830         table.m_glRectd                     = glRectd;
831         table.m_glRectdv                    = glRectdv;
832         table.m_glRectf                     = glRectf;
833         table.m_glRectfv                    = glRectfv;
834         table.m_glRecti                     = glRecti;
835         table.m_glRectiv                    = glRectiv;
836         table.m_glRects                     = glRects;
837         table.m_glRectsv                    = glRectsv;
838         table.m_glRenderMode                = glRenderMode;
839         table.m_glRotated                   = glRotated;
840         table.m_glRotatef                   = glRotatef;
841         table.m_glScaled                    = glScaled;
842         table.m_glScalef                    = glScalef;
843         table.m_glScissor                   = glScissor;
844         table.m_glSelectBuffer              = glSelectBuffer;
845         table.m_glShadeModel                = glShadeModel;
846         table.m_glStencilFunc               = glStencilFunc;
847         table.m_glStencilMask               = glStencilMask;
848         table.m_glStencilOp                 = glStencilOp;
849         table.m_glTexCoord1d                = glTexCoord1d;
850         table.m_glTexCoord1dv               = glTexCoord1dv;
851         table.m_glTexCoord1f                = glTexCoord1f;
852         table.m_glTexCoord1fv               = glTexCoord1fv;
853         table.m_glTexCoord1i                = glTexCoord1i;
854         table.m_glTexCoord1iv               = glTexCoord1iv;
855         table.m_glTexCoord1s                = glTexCoord1s;
856         table.m_glTexCoord1sv               = glTexCoord1sv;
857         table.m_glTexCoord2d                = glTexCoord2d;
858         table.m_glTexCoord2dv               = glTexCoord2dv;
859         table.m_glTexCoord2f                = glTexCoord2f;
860         table.m_glTexCoord2fv               = glTexCoord2fv;
861         table.m_glTexCoord2i                = glTexCoord2i;
862         table.m_glTexCoord2iv               = glTexCoord2iv;
863         table.m_glTexCoord2s                = glTexCoord2s;
864         table.m_glTexCoord2sv               = glTexCoord2sv;
865         table.m_glTexCoord3d                = glTexCoord3d;
866         table.m_glTexCoord3dv               = glTexCoord3dv;
867         table.m_glTexCoord3f                = glTexCoord3f;
868         table.m_glTexCoord3fv               = glTexCoord3fv;
869         table.m_glTexCoord3i                = glTexCoord3i;
870         table.m_glTexCoord3iv               = glTexCoord3iv;
871         table.m_glTexCoord3s                = glTexCoord3s;
872         table.m_glTexCoord3sv               = glTexCoord3sv;
873         table.m_glTexCoord4d                = glTexCoord4d;
874         table.m_glTexCoord4dv               = glTexCoord4dv;
875         table.m_glTexCoord4f                = glTexCoord4f;
876         table.m_glTexCoord4fv               = glTexCoord4fv;
877         table.m_glTexCoord4i                = glTexCoord4i;
878         table.m_glTexCoord4iv               = glTexCoord4iv;
879         table.m_glTexCoord4s                = glTexCoord4s;
880         table.m_glTexCoord4sv               = glTexCoord4sv;
881         table.m_glTexCoordPointer           = glTexCoordPointer;
882         table.m_glTexEnvf                   = glTexEnvf;
883         table.m_glTexEnvfv                  = glTexEnvfv;
884         table.m_glTexEnvi                   = glTexEnvi;
885         table.m_glTexEnviv                  = glTexEnviv;
886         table.m_glTexGend                   = glTexGend;
887         table.m_glTexGendv                  = glTexGendv;
888         table.m_glTexGenf                   = glTexGenf;
889         table.m_glTexGenfv                  = glTexGenfv;
890         table.m_glTexGeni                   = glTexGeni;
891         table.m_glTexGeniv                  = glTexGeniv;
892         table.m_glTexImage1D                = glTexImage1D;
893         table.m_glTexImage2D                = glTexImage2D;
894         table.m_glTexParameterf             = glTexParameterf;
895         table.m_glTexParameterfv            = glTexParameterfv;
896         table.m_glTexParameteri             = glTexParameteri;
897         table.m_glTexParameteriv            = glTexParameteriv;
898         table.m_glTexSubImage1D             = glTexSubImage1D;
899         table.m_glTexSubImage2D             = glTexSubImage2D;
900         table.m_glTranslated                = glTranslated;
901         table.m_glTranslatef                = glTranslatef;
902         table.m_glVertex2d                  = glVertex2d;
903         table.m_glVertex2dv                 = glVertex2dv;
904         table.m_glVertex2f                  = glVertex2f;
905         table.m_glVertex2fv                 = glVertex2fv;
906         table.m_glVertex2i                  = glVertex2i;
907         table.m_glVertex2iv                 = glVertex2iv;
908         table.m_glVertex2s                  = glVertex2s;
909         table.m_glVertex2sv                 = glVertex2sv;
910         table.m_glVertex3d                  = glVertex3d;
911         table.m_glVertex3dv                 = glVertex3dv;
912         table.m_glVertex3f                  = glVertex3f;
913         table.m_glVertex3fv                 = glVertex3fv;
914         table.m_glVertex3i                  = glVertex3i;
915         table.m_glVertex3iv                 = glVertex3iv;
916         table.m_glVertex3s                  = glVertex3s;
917         table.m_glVertex3sv                 = glVertex3sv;
918         table.m_glVertex4d                  = glVertex4d;
919         table.m_glVertex4dv                 = glVertex4dv;
920         table.m_glVertex4f                  = glVertex4f;
921         table.m_glVertex4fv                 = glVertex4fv;
922         table.m_glVertex4i                  = glVertex4i;
923         table.m_glVertex4iv                 = glVertex4iv;
924         table.m_glVertex4s                  = glVertex4s;
925         table.m_glVertex4sv                 = glVertex4sv;
926         table.m_glVertexPointer             = glVertexPointer;
927         table.m_glViewport                  = glViewport;
928
929         if ( QGL_ExtensionSupported( "GL_ARB_multitexture" ) ) {
930                 table.support_ARB_multitexture =
931                         QGL_constructExtensionFunc( table.m_glActiveTextureARB, "glActiveTextureARB" )
932                         && QGL_constructExtensionFunc( table.m_glClientActiveTextureARB, "glClientActiveTextureARB" )
933                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1dARB, "glMultiTexCoord1dARB" )
934                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1dvARB, "glMultiTexCoord1dvARB" )
935                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1fARB, "glMultiTexCoord1fARB" )
936                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1fvARB, "glMultiTexCoord1fvARB" )
937                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1iARB, "glMultiTexCoord1iARB" )
938                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1ivARB, "glMultiTexCoord1ivARB" )
939                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1sARB, "glMultiTexCoord1sARB" )
940                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1svARB, "glMultiTexCoord1svARB" )
941                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2dARB, "glMultiTexCoord2dARB" )
942                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2dvARB, "glMultiTexCoord2dvARB" )
943                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2fARB, "glMultiTexCoord2fARB" )
944                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2fvARB, "glMultiTexCoord2fvARB" )
945                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2iARB, "glMultiTexCoord2iARB" )
946                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2ivARB, "glMultiTexCoord2ivARB" )
947                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2sARB, "glMultiTexCoord2sARB" )
948                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2svARB, "glMultiTexCoord2svARB" )
949                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3dARB, "glMultiTexCoord3dARB" )
950                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3dvARB, "glMultiTexCoord3dvARB" )
951                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3fARB, "glMultiTexCoord3fARB" )
952                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3fvARB, "glMultiTexCoord3fvARB" )
953                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3iARB, "glMultiTexCoord3iARB" )
954                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3ivARB, "glMultiTexCoord3ivARB" )
955                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3sARB, "glMultiTexCoord3sARB" )
956                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3svARB, "glMultiTexCoord3svARB" )
957                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4dARB, "glMultiTexCoord4dARB" )
958                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4dvARB, "glMultiTexCoord4dvARB" )
959                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4fARB, "glMultiTexCoord4fARB" )
960                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4fvARB, "glMultiTexCoord4fvARB" )
961                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4iARB, "glMultiTexCoord4iARB" )
962                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4ivARB, "glMultiTexCoord4ivARB" )
963                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4sARB, "glMultiTexCoord4sARB" )
964                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4svARB, "glMultiTexCoord4svARB" );
965
966                 if ( !table.support_ARB_multitexture ) {
967                         extension_not_implemented( "GL_ARB_multitexture" );
968                 }
969         }
970         else
971         {
972                 table.support_ARB_multitexture = false;
973         }
974
975         if ( QGL_ExtensionSupported( "GL_ARB_texture_compression" ) ) {
976                 table.support_ARB_texture_compression =
977                         QGL_constructExtensionFunc( table.m_glCompressedTexImage3DARB, "glCompressedTexImage3DARB" )
978                         && QGL_constructExtensionFunc( table.m_glCompressedTexImage2DARB, "glCompressedTexImage2DARB" )
979                         && QGL_constructExtensionFunc( table.m_glCompressedTexImage1DARB, "glCompressedTexImage1DARB" )
980                         && QGL_constructExtensionFunc( table.m_glCompressedTexSubImage3DARB, "glCompressedTexSubImage3DARB" )
981                         && QGL_constructExtensionFunc( table.m_glCompressedTexSubImage2DARB, "glCompressedTexSubImage2DARB" )
982                         && QGL_constructExtensionFunc( table.m_glCompressedTexSubImage1DARB, "glCompressedTexSubImage1DARB" )
983                         && QGL_constructExtensionFunc( table.m_glGetCompressedTexImageARB, "glGetCompressedTexImageARB" );
984
985                 if ( !table.support_ARB_texture_compression ) {
986                         extension_not_implemented( "GL_ARB_texture_compression" );
987                 }
988         }
989         else
990         {
991                 table.support_ARB_texture_compression = false;
992         }
993
994         table.support_EXT_texture_compression_s3tc = QGL_ExtensionSupported( "GL_EXT_texture_compression_s3tc" );
995
996         // GL 1.2
997         if ( table.major_version > 1 || table.minor_version >= 2 ) {
998                 table.support_GL_1_2 =
999                         QGL_constructExtensionFunc( table.m_glCopyTexSubImage3D, "glCopyTexSubImage3D" )
1000                         && QGL_constructExtensionFunc( table.m_glDrawRangeElements, "glDrawRangeElements" )
1001                         && QGL_constructExtensionFunc( table.m_glTexImage3D, "glTexImage3D" )
1002                         && QGL_constructExtensionFunc( table.m_glTexSubImage3D, "glTexSubImage3D" );
1003
1004                 if ( !table.support_GL_1_2 ) {
1005                         extension_not_implemented( "GL_VERSION_1_2" );
1006                 }
1007         }
1008         else
1009         {
1010                 table.support_GL_1_2 = false;
1011         }
1012
1013         // GL 1.3
1014         if ( table.major_version > 1 || table.minor_version >= 3 ) {
1015                 table.support_GL_1_3 =
1016                         QGL_constructExtensionFunc( table.m_glActiveTexture, "glActiveTexture" )
1017                         && QGL_constructExtensionFunc( table.m_glClientActiveTexture, "glClientActiveTexture" )
1018                         && QGL_constructExtensionFunc( table.m_glCompressedTexImage1D, "glCompressedTexImage1D" )
1019                         && QGL_constructExtensionFunc( table.m_glCompressedTexImage2D, "glCompressedTexImage2D" )
1020                         && QGL_constructExtensionFunc( table.m_glCompressedTexImage3D, "glCompressedTexImage3D" )
1021                         && QGL_constructExtensionFunc( table.m_glCompressedTexSubImage1D, "glCompressedTexSubImage1D" )
1022                         && QGL_constructExtensionFunc( table.m_glCompressedTexSubImage2D, "glCompressedTexSubImage2D" )
1023                         && QGL_constructExtensionFunc( table.m_glCompressedTexSubImage3D, "glCompressedTexSubImage3D" )
1024                         && QGL_constructExtensionFunc( table.m_glGetCompressedTexImage, "glGetCompressedTexImage" )
1025                         && QGL_constructExtensionFunc( table.m_glLoadTransposeMatrixd, "glLoadTransposeMatrixd" )
1026                         && QGL_constructExtensionFunc( table.m_glLoadTransposeMatrixf, "glLoadTransposeMatrixf" )
1027                         && QGL_constructExtensionFunc( table.m_glMultTransposeMatrixd, "glMultTransposeMatrixd" )
1028                         && QGL_constructExtensionFunc( table.m_glMultTransposeMatrixf, "glMultTransposeMatrixf" )
1029                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1d, "glMultiTexCoord1d" )
1030                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1dv, "glMultiTexCoord1dv" )
1031                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1f, "glMultiTexCoord1f" )
1032                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1fv, "glMultiTexCoord1fv" )
1033                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1i, "glMultiTexCoord1i" )
1034                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1iv, "glMultiTexCoord1iv" )
1035                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1s, "glMultiTexCoord1s" )
1036                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord1sv, "glMultiTexCoord1sv" )
1037                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2d, "glMultiTexCoord2d" )
1038                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2dv, "glMultiTexCoord2dv" )
1039                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2f, "glMultiTexCoord2f" )
1040                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2fv, "glMultiTexCoord2fv" )
1041                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2i, "glMultiTexCoord2i" )
1042                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2iv, "glMultiTexCoord2iv" )
1043                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2s, "glMultiTexCoord2s" )
1044                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord2sv, "glMultiTexCoord2sv" )
1045                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3d, "glMultiTexCoord3d" )
1046                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3dv, "glMultiTexCoord3dv" )
1047                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3f, "glMultiTexCoord3f" )
1048                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3fv, "glMultiTexCoord3fv" )
1049                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3i, "glMultiTexCoord3i" )
1050                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3iv, "glMultiTexCoord3iv" )
1051                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3s, "glMultiTexCoord3s" )
1052                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord3sv, "glMultiTexCoord3sv" )
1053                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4d, "glMultiTexCoord4d" )
1054                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4dv, "glMultiTexCoord4dv" )
1055                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4f, "glMultiTexCoord4f" )
1056                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4fv, "glMultiTexCoord4fv" )
1057                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4i, "glMultiTexCoord4i" )
1058                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4iv, "glMultiTexCoord4iv" )
1059                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4s, "glMultiTexCoord4s" )
1060                         && QGL_constructExtensionFunc( table.m_glMultiTexCoord4sv, "glMultiTexCoord4sv" )
1061                         && QGL_constructExtensionFunc( table.m_glSampleCoverage, "glSampleCoverage" );
1062
1063                 if ( !table.support_GL_1_3 ) {
1064                         extension_not_implemented( "GL_VERSION_1_3" );
1065                 }
1066         }
1067         else
1068         {
1069                 table.support_GL_1_3 = false;
1070         }
1071
1072         // GL 1.4
1073         if ( table.major_version > 1 || table.minor_version >= 4 ) {
1074                 table.support_GL_1_4 =
1075                         QGL_constructExtensionFunc( table.m_glBlendColor, "glBlendColor" )
1076                         && QGL_constructExtensionFunc( table.m_glBlendEquation, "glBlendEquation" )
1077                         && QGL_constructExtensionFunc( table.m_glBlendFuncSeparate, "glBlendFuncSeparate" )
1078                         && QGL_constructExtensionFunc( table.m_glFogCoordPointer, "glFogCoordPointer" )
1079                         && QGL_constructExtensionFunc( table.m_glFogCoordd, "glFogCoordd" )
1080                         && QGL_constructExtensionFunc( table.m_glFogCoorddv, "glFogCoorddv" )
1081                         && QGL_constructExtensionFunc( table.m_glFogCoordf, "glFogCoordf" )
1082                         && QGL_constructExtensionFunc( table.m_glFogCoordfv, "glFogCoordfv" )
1083                         && QGL_constructExtensionFunc( table.m_glMultiDrawArrays, "glMultiDrawArrays" )
1084                         && QGL_constructExtensionFunc( table.m_glMultiDrawElements, "glMultiDrawElements" )
1085                         && QGL_constructExtensionFunc( table.m_glPointParameterf, "glPointParameterf" )
1086                         && QGL_constructExtensionFunc( table.m_glPointParameterfv, "glPointParameterfv" )
1087                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3b, "glSecondaryColor3b" )
1088                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3bv, "glSecondaryColor3bv" )
1089                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3d, "glSecondaryColor3d" )
1090                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3dv, "glSecondaryColor3dv" )
1091                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3f, "glSecondaryColor3f" )
1092                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3fv, "glSecondaryColor3fv" )
1093                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3i, "glSecondaryColor3i" )
1094                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3iv, "glSecondaryColor3iv" )
1095                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3s, "glSecondaryColor3s" )
1096                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3sv, "glSecondaryColor3sv" )
1097                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3ub, "glSecondaryColor3ub" )
1098                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3ubv, "glSecondaryColor3ubv" )
1099                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3ui, "glSecondaryColor3ui" )
1100                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3uiv, "glSecondaryColor3uiv" )
1101                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3us, "glSecondaryColor3us" )
1102                         && QGL_constructExtensionFunc( table.m_glSecondaryColor3usv, "glSecondaryColor3usv" )
1103                         && QGL_constructExtensionFunc( table.m_glSecondaryColorPointer, "glSecondaryColorPointer" )
1104                         && QGL_constructExtensionFunc( table.m_glWindowPos2d, "glWindowPos2d" )
1105                         && QGL_constructExtensionFunc( table.m_glWindowPos2dv, "glWindowPos2dv" )
1106                         && QGL_constructExtensionFunc( table.m_glWindowPos2f, "glWindowPos2f" )
1107                         && QGL_constructExtensionFunc( table.m_glWindowPos2fv, "glWindowPos2fv" )
1108                         && QGL_constructExtensionFunc( table.m_glWindowPos2i, "glWindowPos2i" )
1109                         && QGL_constructExtensionFunc( table.m_glWindowPos2iv, "glWindowPos2iv" )
1110                         && QGL_constructExtensionFunc( table.m_glWindowPos2s, "glWindowPos2s" )
1111                         && QGL_constructExtensionFunc( table.m_glWindowPos2sv, "glWindowPos2sv" )
1112                         && QGL_constructExtensionFunc( table.m_glWindowPos3d, "glWindowPos3d" )
1113                         && QGL_constructExtensionFunc( table.m_glWindowPos3dv, "glWindowPos3dv" )
1114                         && QGL_constructExtensionFunc( table.m_glWindowPos3f, "glWindowPos3f" )
1115                         && QGL_constructExtensionFunc( table.m_glWindowPos3fv, "glWindowPos3fv" )
1116                         && QGL_constructExtensionFunc( table.m_glWindowPos3i, "glWindowPos3i" )
1117                         && QGL_constructExtensionFunc( table.m_glWindowPos3iv, "glWindowPos3iv" )
1118                         && QGL_constructExtensionFunc( table.m_glWindowPos3s, "glWindowPos3s" )
1119                         && QGL_constructExtensionFunc( table.m_glWindowPos3sv, "glWindowPos3sv" );
1120
1121                 if ( !table.support_GL_1_4 ) {
1122                         extension_not_implemented( "GL_VERSION_1_4" );
1123                 }
1124         }
1125         else
1126         {
1127                 table.support_GL_1_4 = false;
1128         }
1129
1130         // GL 1.5
1131         if ( table.major_version > 1 || table.minor_version >= 5 ) {
1132                 table.support_GL_1_5 =
1133                         QGL_constructExtensionFunc( table.m_glBeginQuery, "glBeginQuery" )
1134                         && QGL_constructExtensionFunc( table.m_glBindBuffer, "glBindBuffer" )
1135                         && QGL_constructExtensionFunc( table.m_glBufferData, "glBufferData" )
1136                         && QGL_constructExtensionFunc( table.m_glBufferSubData, "glBufferSubData" )
1137                         && QGL_constructExtensionFunc( table.m_glDeleteBuffers, "glDeleteBuffers" )
1138                         && QGL_constructExtensionFunc( table.m_glDeleteQueries, "glDeleteQueries" )
1139                         && QGL_constructExtensionFunc( table.m_glEndQuery, "glEndQuery" )
1140                         && QGL_constructExtensionFunc( table.m_glGenBuffers, "glGenBuffers" )
1141                         && QGL_constructExtensionFunc( table.m_glGenQueries, "glGenQueries" )
1142                         && QGL_constructExtensionFunc( table.m_glGetBufferParameteriv, "glGetBufferParameteriv" )
1143                         && QGL_constructExtensionFunc( table.m_glGetBufferPointerv, "glGetBufferPointerv" )
1144                         && QGL_constructExtensionFunc( table.m_glGetBufferSubData, "glGetBufferSubData" )
1145                         && QGL_constructExtensionFunc( table.m_glGetQueryObjectiv, "glGetQueryObjectiv" )
1146                         && QGL_constructExtensionFunc( table.m_glGetQueryObjectuiv, "glGetQueryObjectuiv" )
1147                         && QGL_constructExtensionFunc( table.m_glGetQueryiv, "glGetQueryiv" )
1148                         && QGL_constructExtensionFunc( table.m_glIsBuffer, "glIsBuffer" )
1149                         && QGL_constructExtensionFunc( table.m_glIsQuery, "glIsQuery" )
1150                         && QGL_constructExtensionFunc( table.m_glMapBuffer, "glMapBuffer" )
1151                         && QGL_constructExtensionFunc( table.m_glUnmapBuffer, "glUnmapBuffer" );
1152
1153                 if ( !table.support_GL_1_5 ) {
1154                         extension_not_implemented( "GL_VERSION_1_5" );
1155                 }
1156         }
1157         else
1158         {
1159                 table.support_GL_1_5 = false;
1160         }
1161
1162
1163         if ( QGL_ExtensionSupported( "GL_ARB_vertex_program" ) ) {
1164                 table.support_ARB_vertex_program =
1165                         QGL_constructExtensionFunc( table.m_glVertexAttrib1sARB, "glVertexAttrib1sARB" )
1166                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1fARB, "glVertexAttrib1fARB" )
1167                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1dARB, "glVertexAttrib1dARB" )
1168                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2sARB, "glVertexAttrib2sARB" )
1169                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2fARB, "glVertexAttrib2fARB" )
1170                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2dARB, "glVertexAttrib2dARB" )
1171                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3sARB, "glVertexAttrib3sARB" )
1172                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3fARB, "glVertexAttrib3fARB" )
1173                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3dARB, "glVertexAttrib3dARB" )
1174                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4sARB, "glVertexAttrib4sARB" )
1175                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4fARB, "glVertexAttrib4fARB" )
1176                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4dARB, "glVertexAttrib4dARB" )
1177                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NubARB, "glVertexAttrib4NubARB" )
1178                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1svARB, "glVertexAttrib1svARB" )
1179                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1fvARB, "glVertexAttrib1fvARB" )
1180                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1dvARB, "glVertexAttrib1dvARB" )
1181                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2svARB, "glVertexAttrib2svARB" )
1182                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2fvARB, "glVertexAttrib2fvARB" )
1183                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2dvARB, "glVertexAttrib2dvARB" )
1184                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3svARB, "glVertexAttrib3svARB" )
1185                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3fvARB, "glVertexAttrib3fvARB" )
1186                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3dvARB, "glVertexAttrib3dvARB" )
1187                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4bvARB, "glVertexAttrib4bvARB" )
1188                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4svARB, "glVertexAttrib4svARB" )
1189                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4ivARB, "glVertexAttrib4ivARB" )
1190                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4ubvARB, "glVertexAttrib4ubvARB" )
1191                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4usvARB, "glVertexAttrib4usvARB" )
1192                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4uivARB, "glVertexAttrib4uivARB" )
1193                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4fvARB, "glVertexAttrib4fvARB" )
1194                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4dvARB, "glVertexAttrib4dvARB" )
1195                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NbvARB, "glVertexAttrib4NbvARB" )
1196                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NsvARB, "glVertexAttrib4NsvARB" )
1197                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NivARB, "glVertexAttrib4NivARB" )
1198                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NubvARB, "glVertexAttrib4NubvARB" )
1199                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NusvARB, "glVertexAttrib4NusvARB" )
1200                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NuivARB, "glVertexAttrib4NuivARB" )
1201                         && QGL_constructExtensionFunc( table.m_glVertexAttribPointerARB, "glVertexAttribPointerARB" )
1202                         && QGL_constructExtensionFunc( table.m_glEnableVertexAttribArrayARB, "glEnableVertexAttribArrayARB" )
1203                         && QGL_constructExtensionFunc( table.m_glDisableVertexAttribArrayARB, "glDisableVertexAttribArrayARB" )
1204                         && QGL_constructExtensionFunc( table.m_glProgramStringARB, "glProgramStringARB" )
1205                         && QGL_constructExtensionFunc( table.m_glBindProgramARB, "glBindProgramARB" )
1206                         && QGL_constructExtensionFunc( table.m_glDeleteProgramsARB, "glDeleteProgramsARB" )
1207                         && QGL_constructExtensionFunc( table.m_glGenProgramsARB, "glGenProgramsARB" )
1208                         && QGL_constructExtensionFunc( table.m_glProgramEnvParameter4dARB, "glProgramEnvParameter4dARB" )
1209                         && QGL_constructExtensionFunc( table.m_glProgramEnvParameter4dvARB, "glProgramEnvParameter4dvARB" )
1210                         && QGL_constructExtensionFunc( table.m_glProgramEnvParameter4fARB, "glProgramEnvParameter4fARB" )
1211                         && QGL_constructExtensionFunc( table.m_glProgramEnvParameter4fvARB, "glProgramEnvParameter4fvARB" )
1212                         && QGL_constructExtensionFunc( table.m_glProgramLocalParameter4dARB, "glProgramLocalParameter4dARB" )
1213                         && QGL_constructExtensionFunc( table.m_glProgramLocalParameter4dvARB, "glProgramLocalParameter4dvARB" )
1214                         && QGL_constructExtensionFunc( table.m_glProgramLocalParameter4fARB, "glProgramLocalParameter4fARB" )
1215                         && QGL_constructExtensionFunc( table.m_glProgramLocalParameter4fvARB, "glProgramLocalParameter4fvARB" )
1216                         && QGL_constructExtensionFunc( table.m_glGetProgramEnvParameterdvARB, "glGetProgramEnvParameterdvARB" )
1217                         && QGL_constructExtensionFunc( table.m_glGetProgramEnvParameterfvARB, "glGetProgramEnvParameterfvARB" )
1218                         && QGL_constructExtensionFunc( table.m_glGetProgramLocalParameterdvARB, "glGetProgramLocalParameterdvARB" )
1219                         && QGL_constructExtensionFunc( table.m_glGetProgramLocalParameterfvARB, "glGetProgramLocalParameterfvARB" )
1220                         && QGL_constructExtensionFunc( table.m_glGetProgramivARB, "glGetProgramivARB" )
1221                         && QGL_constructExtensionFunc( table.m_glGetProgramStringARB, "glGetProgramStringARB" )
1222                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribdvARB, "glGetVertexAttribdvARB" )
1223                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribfvARB, "glGetVertexAttribfvARB" )
1224                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribivARB, "glGetVertexAttribivARB" )
1225                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribPointervARB, "glGetVertexAttribPointervARB" )
1226                         && QGL_constructExtensionFunc( table.m_glIsProgramARB, "glIsProgramARB" );
1227
1228                 if ( !table.support_ARB_vertex_program ) {
1229                         extension_not_implemented( "GL_ARB_vertex_program" );
1230                 }
1231         }
1232         else
1233         {
1234                 table.support_ARB_vertex_program = false;
1235         }
1236
1237
1238         table.support_ARB_fragment_program = QGL_ExtensionSupported( "GL_ARB_fragment_program" );
1239
1240         if ( QGL_ExtensionSupported( "GL_ARB_shader_objects" ) ) {
1241                 table.support_ARB_shader_objects =
1242                         QGL_constructExtensionFunc( table.m_glDeleteObjectARB, "glDeleteObjectARB" )
1243                         && QGL_constructExtensionFunc( table.m_glGetHandleARB, "glGetHandleARB" )
1244                         && QGL_constructExtensionFunc( table.m_glDetachObjectARB, "glDetachObjectARB" )
1245                         && QGL_constructExtensionFunc( table.m_glCreateShaderObjectARB, "glCreateShaderObjectARB" )
1246                         && QGL_constructExtensionFunc( table.m_glShaderSourceARB, "glShaderSourceARB" )
1247                         && QGL_constructExtensionFunc( table.m_glCompileShaderARB, "glCompileShaderARB" )
1248                         && QGL_constructExtensionFunc( table.m_glCreateProgramObjectARB, "glCreateProgramObjectARB" )
1249                         && QGL_constructExtensionFunc( table.m_glAttachObjectARB, "glAttachObjectARB" )
1250                         && QGL_constructExtensionFunc( table.m_glLinkProgramARB, "glLinkProgramARB" )
1251                         && QGL_constructExtensionFunc( table.m_glUseProgramObjectARB, "glUseProgramObjectARB" )
1252                         && QGL_constructExtensionFunc( table.m_glValidateProgramARB, "glValidateProgramARB" )
1253                         && QGL_constructExtensionFunc( table.m_glUniform1fARB, "glUniform1fARB" )
1254                         && QGL_constructExtensionFunc( table.m_glUniform2fARB, "glUniform2fARB" )
1255                         && QGL_constructExtensionFunc( table.m_glUniform3fARB, "glUniform3fARB" )
1256                         && QGL_constructExtensionFunc( table.m_glUniform4fARB, "glUniform4fARB" )
1257                         && QGL_constructExtensionFunc( table.m_glUniform1iARB, "glUniform1iARB" )
1258                         && QGL_constructExtensionFunc( table.m_glUniform2iARB, "glUniform2iARB" )
1259                         && QGL_constructExtensionFunc( table.m_glUniform3iARB, "glUniform3iARB" )
1260                         && QGL_constructExtensionFunc( table.m_glUniform4iARB, "glUniform4iARB" )
1261                         && QGL_constructExtensionFunc( table.m_glUniform1fvARB, "glUniform1fvARB" )
1262                         && QGL_constructExtensionFunc( table.m_glUniform2fvARB, "glUniform2fvARB" )
1263                         && QGL_constructExtensionFunc( table.m_glUniform3fvARB, "glUniform3fvARB" )
1264                         && QGL_constructExtensionFunc( table.m_glUniform4fvARB, "glUniform4fvARB" )
1265                         && QGL_constructExtensionFunc( table.m_glUniform1ivARB, "glUniform1ivARB" )
1266                         && QGL_constructExtensionFunc( table.m_glUniform2ivARB, "glUniform2ivARB" )
1267                         && QGL_constructExtensionFunc( table.m_glUniform3ivARB, "glUniform3ivARB" )
1268                         && QGL_constructExtensionFunc( table.m_glUniform4ivARB, "glUniform4ivARB" )
1269                         && QGL_constructExtensionFunc( table.m_glUniformMatrix2fvARB, "glUniformMatrix2fvARB" )
1270                         && QGL_constructExtensionFunc( table.m_glUniformMatrix3fvARB, "glUniformMatrix3fvARB" )
1271                         && QGL_constructExtensionFunc( table.m_glUniformMatrix4fvARB, "glUniformMatrix4fvARB" )
1272                         && QGL_constructExtensionFunc( table.m_glGetObjectParameterfvARB, "glGetObjectParameterfvARB" )
1273                         && QGL_constructExtensionFunc( table.m_glGetObjectParameterivARB, "glGetObjectParameterivARB" )
1274                         && QGL_constructExtensionFunc( table.m_glGetInfoLogARB, "glGetInfoLogARB" )
1275                         && QGL_constructExtensionFunc( table.m_glGetAttachedObjectsARB, "glGetAttachedObjectsARB" )
1276                         && QGL_constructExtensionFunc( table.m_glGetUniformLocationARB, "glGetUniformLocationARB" )
1277                         && QGL_constructExtensionFunc( table.m_glGetActiveUniformARB, "glGetActiveUniformARB" )
1278                         && QGL_constructExtensionFunc( table.m_glGetUniformfvARB, "glGetUniformfvARB" )
1279                         && QGL_constructExtensionFunc( table.m_glGetUniformivARB, "glGetUniformivARB" )
1280                         && QGL_constructExtensionFunc( table.m_glGetShaderSourceARB, "glGetShaderSourceARB" );
1281
1282                 if ( !table.support_ARB_shader_objects ) {
1283                         extension_not_implemented( "GL_ARB_shader_objects" );
1284                 }
1285         }
1286         else
1287         {
1288                 table.support_ARB_shader_objects = false;
1289         }
1290
1291         if ( QGL_ExtensionSupported( "GL_ARB_vertex_shader" ) ) {
1292                 table.support_ARB_vertex_shader =
1293                         QGL_constructExtensionFunc( table.m_glVertexAttrib1fARB, "glVertexAttrib1fARB" )
1294                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1sARB, "glVertexAttrib1sARB" )
1295                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1dARB, "glVertexAttrib1dARB" )
1296                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2fARB, "glVertexAttrib2fARB" )
1297                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2sARB, "glVertexAttrib2sARB" )
1298                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2dARB, "glVertexAttrib2dARB" )
1299                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3fARB, "glVertexAttrib3fARB" )
1300                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3sARB, "glVertexAttrib3sARB" )
1301                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3dARB, "glVertexAttrib3dARB" )
1302                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4fARB, "glVertexAttrib4fARB" )
1303                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4sARB, "glVertexAttrib4sARB" )
1304                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4dARB, "glVertexAttrib4dARB" )
1305                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NubARB, "glVertexAttrib4NubARB" )
1306                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1fvARB, "glVertexAttrib1fvARB" )
1307                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1svARB, "glVertexAttrib1svARB" )
1308                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1dvARB, "glVertexAttrib1dvARB" )
1309                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2fvARB, "glVertexAttrib2fvARB" )
1310                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2svARB, "glVertexAttrib2svARB" )
1311                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2dvARB, "glVertexAttrib2dvARB" )
1312                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3fvARB, "glVertexAttrib3fvARB" )
1313                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3svARB, "glVertexAttrib3svARB" )
1314                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3dvARB, "glVertexAttrib3dvARB" )
1315                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4fvARB, "glVertexAttrib4fvARB" )
1316                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4svARB, "glVertexAttrib4svARB" )
1317                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4dvARB, "glVertexAttrib4dvARB" )
1318                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4ivARB, "glVertexAttrib4ivARB" )
1319                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4bvARB, "glVertexAttrib4bvARB" )
1320                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4ubvARB, "glVertexAttrib4ubvARB" )
1321                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4usvARB, "glVertexAttrib4usvARB" )
1322                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4uivARB, "glVertexAttrib4uivARB" )
1323                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NbvARB, "glVertexAttrib4NbvARB" )
1324                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NsvARB, "glVertexAttrib4NsvARB" )
1325                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NivARB, "glVertexAttrib4NivARB" )
1326                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NubvARB, "glVertexAttrib4NubvARB" )
1327                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NusvARB, "glVertexAttrib4NusvARB" )
1328                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4NuivARB, "glVertexAttrib4NuivARB" )
1329                         && QGL_constructExtensionFunc( table.m_glVertexAttribPointerARB, "glVertexAttribPointerARB" )
1330                         && QGL_constructExtensionFunc( table.m_glEnableVertexAttribArrayARB, "glEnableVertexAttribArrayARB" )
1331                         && QGL_constructExtensionFunc( table.m_glDisableVertexAttribArrayARB, "glDisableVertexAttribArrayARB" )
1332                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribdvARB, "glGetVertexAttribdvARB" )
1333                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribfvARB, "glGetVertexAttribfvARB" )
1334                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribivARB, "glGetVertexAttribivARB" )
1335                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribPointervARB, "glGetVertexAttribPointervARB" )
1336                         && QGL_constructExtensionFunc( table.m_glBindAttribLocationARB, "glBindAttribLocationARB" )
1337                         && QGL_constructExtensionFunc( table.m_glGetActiveAttribARB, "glGetActiveAttribARB" )
1338                         && QGL_constructExtensionFunc( table.m_glGetAttribLocationARB, "glGetAttribLocationARB" );
1339
1340                 if ( !table.support_ARB_vertex_shader ) {
1341                         extension_not_implemented( "GL_ARB_vertex_shader" );
1342                 }
1343         }
1344         else
1345         {
1346                 table.support_ARB_vertex_shader = false;
1347         }
1348
1349         if ( QGL_ExtensionSupported( "GL_NV_vertex_program2" ) ) {
1350                 table.support_NV_vertex_program2 =
1351                         QGL_constructExtensionFunc( table.m_glAreProgramsResidentNV, "glAreProgramsResidentNV" )
1352                         && QGL_constructExtensionFunc( table.m_glBindProgramNV, "glBindProgramNV" )
1353                         && QGL_constructExtensionFunc( table.m_glDeleteProgramsNV, "glDeleteProgramsNV" )
1354                         && QGL_constructExtensionFunc( table.m_glExecuteProgramNV, "glExecuteProgramNV" )
1355                         && QGL_constructExtensionFunc( table.m_glGenProgramsNV, "glGenProgramsNV" )
1356                         && QGL_constructExtensionFunc( table.m_glGetProgramParameterdvNV, "glGetProgramParameterdvNV" )
1357                         && QGL_constructExtensionFunc( table.m_glGetProgramParameterfvNV, "glGetProgramParameterfvNV" )
1358                         && QGL_constructExtensionFunc( table.m_glGetProgramivNV, "glGetProgramivNV" )
1359                         && QGL_constructExtensionFunc( table.m_glGetProgramStringNV, "glGetProgramStringNV" )
1360                         && QGL_constructExtensionFunc( table.m_glGetTrackMatrixivNV, "glGetTrackMatrixivNV" )
1361                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribdvNV, "glGetVertexAttribdvNV" )
1362                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribfvNV, "glGetVertexAttribfvNV" )
1363                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribivNV, "glGetVertexAttribivNV" )
1364                         && QGL_constructExtensionFunc( table.m_glGetVertexAttribPointervNV, "glGetVertexAttribPointervNV" )
1365                         && QGL_constructExtensionFunc( table.m_glIsProgramNV, "glIsProgramNV" )
1366                         && QGL_constructExtensionFunc( table.m_glLoadProgramNV, "glLoadProgramNV" )
1367                         && QGL_constructExtensionFunc( table.m_glProgramParameter4fNV, "glProgramParameter4fNV" )
1368                         && QGL_constructExtensionFunc( table.m_glProgramParameter4fvNV, "glProgramParameter4fvNV" )
1369                         && QGL_constructExtensionFunc( table.m_glProgramParameters4fvNV, "glProgramParameters4fvNV" )
1370                         && QGL_constructExtensionFunc( table.m_glRequestResidentProgramsNV, "glRequestResidentProgramsNV" )
1371                         && QGL_constructExtensionFunc( table.m_glTrackMatrixNV, "glTrackMatrixNV" )
1372                         && QGL_constructExtensionFunc( table.m_glVertexAttribPointerNV, "glVertexAttribPointerNV" )
1373                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1fNV, "glVertexAttrib1fNV" )
1374                         && QGL_constructExtensionFunc( table.m_glVertexAttrib1fvNV, "glVertexAttrib1fvNV" )
1375                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2fNV, "glVertexAttrib2fNV" )
1376                         && QGL_constructExtensionFunc( table.m_glVertexAttrib2fvNV, "glVertexAttrib2fvNV" )
1377                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3fNV, "glVertexAttrib3fNV" )
1378                         && QGL_constructExtensionFunc( table.m_glVertexAttrib3fvNV, "glVertexAttrib3fvNV" )
1379                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4fNV, "glVertexAttrib4fNV" )
1380                         && QGL_constructExtensionFunc( table.m_glVertexAttrib4fvNV, "glVertexAttrib4fvNV" )
1381                         && QGL_constructExtensionFunc( table.m_glVertexAttribs1fvNV, "glVertexAttribs1fvNV" )
1382                         && QGL_constructExtensionFunc( table.m_glVertexAttribs2fvNV, "glVertexAttribs2fvNV" )
1383                         && QGL_constructExtensionFunc( table.m_glVertexAttribs3fvNV, "glVertexAttribs3fvNV" )
1384                         && QGL_constructExtensionFunc( table.m_glVertexAttribs4fvNV, "glVertexAttribs4fvNV" );
1385
1386                 if ( !table.support_NV_vertex_program2 ) {
1387                         extension_not_implemented( "GL_NV_vertex_program2" );
1388                 }
1389         }
1390         else
1391         {
1392                 table.support_NV_vertex_program2 = false;
1393                 QGL_invalidateExtensionFunc( table.m_glAreProgramsResidentNV );
1394                 QGL_invalidateExtensionFunc( table.m_glBindProgramNV );
1395                 QGL_invalidateExtensionFunc( table.m_glDeleteProgramsNV );
1396                 QGL_invalidateExtensionFunc( table.m_glExecuteProgramNV );
1397                 QGL_invalidateExtensionFunc( table.m_glGenProgramsNV );
1398                 QGL_invalidateExtensionFunc( table.m_glGetProgramParameterdvNV );
1399                 QGL_invalidateExtensionFunc( table.m_glGetProgramParameterfvNV );
1400                 QGL_invalidateExtensionFunc( table.m_glGetProgramivNV );
1401                 QGL_invalidateExtensionFunc( table.m_glGetProgramStringNV );
1402                 QGL_invalidateExtensionFunc( table.m_glGetTrackMatrixivNV );
1403                 QGL_invalidateExtensionFunc( table.m_glGetVertexAttribdvNV );
1404                 QGL_invalidateExtensionFunc( table.m_glGetVertexAttribfvNV );
1405                 QGL_invalidateExtensionFunc( table.m_glGetVertexAttribivNV );
1406                 QGL_invalidateExtensionFunc( table.m_glGetVertexAttribPointervNV );
1407                 QGL_invalidateExtensionFunc( table.m_glIsProgramNV );
1408                 QGL_invalidateExtensionFunc( table.m_glLoadProgramNV );
1409                 QGL_invalidateExtensionFunc( table.m_glProgramParameter4fNV );
1410                 QGL_invalidateExtensionFunc( table.m_glProgramParameter4fvNV );
1411                 QGL_invalidateExtensionFunc( table.m_glProgramParameters4fvNV );
1412                 QGL_invalidateExtensionFunc( table.m_glRequestResidentProgramsNV );
1413                 QGL_invalidateExtensionFunc( table.m_glTrackMatrixNV );
1414                 QGL_invalidateExtensionFunc( table.m_glVertexAttribPointerNV );
1415                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib1fNV );
1416                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib1fvNV );
1417                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib2fNV );
1418                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib2fvNV );
1419                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib3fNV );
1420                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib3fvNV );
1421                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib4fNV );
1422                 QGL_invalidateExtensionFunc( table.m_glVertexAttrib4fvNV );
1423                 QGL_invalidateExtensionFunc( table.m_glVertexAttribs1fvNV );
1424                 QGL_invalidateExtensionFunc( table.m_glVertexAttribs2fvNV );
1425                 QGL_invalidateExtensionFunc( table.m_glVertexAttribs3fvNV );
1426                 QGL_invalidateExtensionFunc( table.m_glVertexAttribs4fvNV );
1427         }
1428
1429         if ( QGL_ExtensionSupported( "GL_NV_fragment_program" ) ) {
1430                 table.support_NV_fragment_program =
1431                         QGL_constructExtensionFunc( table.m_glProgramNamedParameter4fNV, "glProgramNamedParameter4fNV" )
1432                         && QGL_constructExtensionFunc( table.m_glProgramNamedParameter4fvNV, "glProgramNamedParameter4fvNV" )
1433                         && QGL_constructExtensionFunc( table.m_glGetProgramNamedParameterfvNV, "glGetProgramNamedParameterfvNV" );
1434
1435                 if ( !table.support_NV_fragment_program ) {
1436                         extension_not_implemented( "GL_NV_fragment_program" );
1437                 }
1438         }
1439         else
1440         {
1441                 table.support_NV_fragment_program = false;
1442         }
1443
1444         table.support_ARB_fragment_shader = QGL_ExtensionSupported( "GL_ARB_fragment_shader" );
1445         table.support_ARB_shading_language_100 = QGL_ExtensionSupported( "GL_ARB_shading_language_100" );
1446
1447         if ( QGL_ExtensionSupported( "GL_EXT_texture_filter_anisotropic" ) ) {
1448                 glGetFloatv( GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &g_maxTextureAnisotropy );
1449                 globalOutputStream() << "Anisotropic filtering possible (max " << g_maxTextureAnisotropy << "x)\n";
1450         }
1451         else
1452         {
1453                 globalOutputStream() << "No Anisotropic filtering available\n";
1454                 g_maxTextureAnisotropy = 0;
1455         }
1456 }
1457
1458 void QGL_sharedContextDestroyed( OpenGLBinding& table ){
1459         QGL_clear( table );
1460 }
1461
1462
1463 void QGL_assertNoErrors( const char *file, int line ){
1464         GLenum error = GlobalOpenGL().m_glGetError();
1465         while ( error != GL_NO_ERROR )
1466         {
1467                 const char* errorString = reinterpret_cast<const char*>( qgluErrorString( error ) );
1468                 if ( error == GL_OUT_OF_MEMORY ) {
1469                         ERROR_MESSAGE( "OpenGL out of memory error at " << file << ":" << line << ": " << errorString );
1470                 }
1471                 else
1472                 {
1473                         ERROR_MESSAGE( "OpenGL error at " << file << ":" << line << ": " << errorString );
1474                 }
1475                 error = GlobalOpenGL().m_glGetError();
1476         }
1477 }
1478
1479
1480 class QglAPI
1481 {
1482 OpenGLBinding m_qgl;
1483 public:
1484 typedef OpenGLBinding Type;
1485 STRING_CONSTANT( Name, "*" );
1486
1487 QglAPI(){
1488         QGL_Init( m_qgl );
1489
1490         m_qgl.assertNoErrors = &QGL_assertNoErrors;
1491 }
1492 ~QglAPI(){
1493         QGL_Shutdown( m_qgl );
1494 }
1495 OpenGLBinding* getTable(){
1496         return &m_qgl;
1497 }
1498 };
1499
1500 #include "modulesystem/singletonmodule.h"
1501 #include "modulesystem/moduleregistry.h"
1502
1503 typedef SingletonModule<QglAPI> QglModule;
1504 typedef Static<QglModule> StaticQglModule;
1505 StaticRegisterModule staticRegisterQgl( StaticQglModule::instance() );