123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521 |
- /*
- ===========================================================================
- Copyright (C) 1999-2005 Id Software, Inc.
- This file is part of Quake III Arena source code.
- Quake III Arena source code is free software; you can redistribute it
- and/or modify it under the terms of the GNU General Public License as
- published by the Free Software Foundation; either version 2 of the License,
- or (at your option) any later version.
- Quake III Arena source code is distributed in the hope that it will be
- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with Foobar; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- ===========================================================================
- */
- /*
- ** QGL_WIN.C
- **
- ** This file implements the operating system binding of GL to QGL function
- ** pointers. When doing a port of Quake2 you must implement the following
- ** two functions:
- **
- ** QGL_Init() - loads libraries, assigns function pointers, etc.
- ** QGL_Shutdown() - unloads libraries, NULLs function pointers
- */
- #include "stdafx.h"
- #include <float.h>
- HMODULE g_hGLDLL = NULL;
- # pragma warning (disable : 4113 4133 4047 )
- int ( WINAPI * qwglChoosePixelFormat )(HDC, CONST PIXELFORMATDESCRIPTOR *);
- int ( WINAPI * qwglDescribePixelFormat) (HDC, int, UINT, LPPIXELFORMATDESCRIPTOR);
- int ( WINAPI * qwglGetPixelFormat)(HDC);
- BOOL ( WINAPI * qwglSetPixelFormat)(HDC, int, CONST PIXELFORMATDESCRIPTOR *);
- BOOL ( WINAPI * qwglSwapBuffers)(HDC);
- BOOL ( WINAPI * qwglCopyContext)(HGLRC, HGLRC, UINT);
- HGLRC ( WINAPI * qwglCreateContext)(HDC);
- HGLRC ( WINAPI * qwglCreateLayerContext)(HDC, int);
- BOOL ( WINAPI * qwglDeleteContext)(HGLRC);
- HGLRC ( WINAPI * qwglGetCurrentContext)(VOID);
- HDC ( WINAPI * qwglGetCurrentDC)(VOID);
- PROC ( WINAPI * qwglGetProcAddress)(LPCSTR);
- BOOL ( WINAPI * qwglMakeCurrent)(HDC, HGLRC);
- BOOL ( WINAPI * qwglShareLists)(HGLRC, HGLRC);
- BOOL ( WINAPI * qwglUseFontBitmaps)(HDC, DWORD, DWORD, DWORD);
- BOOL ( WINAPI * qwglUseFontOutlines)(HDC, DWORD, DWORD, DWORD, FLOAT,
- FLOAT, int, LPGLYPHMETRICSFLOAT);
- BOOL ( WINAPI * qwglDescribeLayerPlane)(HDC, int, int, UINT,
- LPLAYERPLANEDESCRIPTOR);
- int ( WINAPI * qwglSetLayerPaletteEntries)(HDC, int, int, int,
- CONST COLORREF *);
- int ( WINAPI * qwglGetLayerPaletteEntries)(HDC, int, int, int,
- COLORREF *);
- BOOL ( WINAPI * qwglRealizeLayerPalette)(HDC, int, BOOL);
- BOOL ( WINAPI * qwglSwapLayerBuffers)(HDC, UINT);
- void ( APIENTRY * qglAccum )(GLenum op, GLfloat value);
- void ( APIENTRY * qglAlphaFunc )(GLenum func, GLclampf ref);
- GLboolean ( APIENTRY * qglAreTexturesResident )(GLsizei n, const GLuint *textures, GLboolean *residences);
- void ( APIENTRY * qglArrayElement )(GLint i);
- void ( APIENTRY * qglBegin )(GLenum mode);
- void ( APIENTRY * qglBindTexture )(GLenum target, GLuint texture);
- void ( APIENTRY * qglBitmap )(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
- void ( APIENTRY * qglBlendFunc )(GLenum sfactor, GLenum dfactor);
- void ( APIENTRY * qglCallList )(GLuint list);
- void ( APIENTRY * qglCallLists )(GLsizei n, GLenum type, const GLvoid *lists);
- void ( APIENTRY * qglClear )(GLbitfield mask);
- void ( APIENTRY * qglClearAccum )(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
- void ( APIENTRY * qglClearColor )(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
- void ( APIENTRY * qglClearDepth )(GLclampd depth);
- void ( APIENTRY * qglClearIndex )(GLfloat c);
- void ( APIENTRY * qglClearStencil )(GLint s);
- void ( APIENTRY * qglClipPlane )(GLenum plane, const GLdouble *equation);
- void ( APIENTRY * qglColor3b )(GLbyte red, GLbyte green, GLbyte blue);
- void ( APIENTRY * qglColor3bv )(const GLbyte *v);
- void ( APIENTRY * qglColor3d )(GLdouble red, GLdouble green, GLdouble blue);
- void ( APIENTRY * qglColor3dv )(const GLdouble *v);
- void ( APIENTRY * qglColor3f )(GLfloat red, GLfloat green, GLfloat blue);
- void ( APIENTRY * qglColor3fv )(const GLfloat *v);
- void ( APIENTRY * qglColor3i )(GLint red, GLint green, GLint blue);
- void ( APIENTRY * qglColor3iv )(const GLint *v);
- void ( APIENTRY * qglColor3s )(GLshort red, GLshort green, GLshort blue);
- void ( APIENTRY * qglColor3sv )(const GLshort *v);
- void ( APIENTRY * qglColor3ub )(GLubyte red, GLubyte green, GLubyte blue);
- void ( APIENTRY * qglColor3ubv )(const GLubyte *v);
- void ( APIENTRY * qglColor3ui )(GLuint red, GLuint green, GLuint blue);
- void ( APIENTRY * qglColor3uiv )(const GLuint *v);
- void ( APIENTRY * qglColor3us )(GLushort red, GLushort green, GLushort blue);
- void ( APIENTRY * qglColor3usv )(const GLushort *v);
- void ( APIENTRY * qglColor4b )(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha);
- void ( APIENTRY * qglColor4bv )(const GLbyte *v);
- void ( APIENTRY * qglColor4d )(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha);
- void ( APIENTRY * qglColor4dv )(const GLdouble *v);
- void ( APIENTRY * qglColor4f )(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
- void ( APIENTRY * qglColor4fv )(const GLfloat *v);
- void ( APIENTRY * qglColor4i )(GLint red, GLint green, GLint blue, GLint alpha);
- void ( APIENTRY * qglColor4iv )(const GLint *v);
- void ( APIENTRY * qglColor4s )(GLshort red, GLshort green, GLshort blue, GLshort alpha);
- void ( APIENTRY * qglColor4sv )(const GLshort *v);
- void ( APIENTRY * qglColor4ub )(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
- void ( APIENTRY * qglColor4ubv )(const GLubyte *v);
- void ( APIENTRY * qglColor4ui )(GLuint red, GLuint green, GLuint blue, GLuint alpha);
- void ( APIENTRY * qglColor4uiv )(const GLuint *v);
- void ( APIENTRY * qglColor4us )(GLushort red, GLushort green, GLushort blue, GLushort alpha);
- void ( APIENTRY * qglColor4usv )(const GLushort *v);
- void ( APIENTRY * qglColorMask )(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
- void ( APIENTRY * qglColorMaterial )(GLenum face, GLenum mode);
- void ( APIENTRY * qglColorPointer )(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
- void ( APIENTRY * qglCopyPixels )(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type);
- void ( APIENTRY * qglCopyTexImage1D )(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLint border);
- void ( APIENTRY * qglCopyTexImage2D )(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
- void ( APIENTRY * qglCopyTexSubImage1D )(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
- void ( APIENTRY * qglCopyTexSubImage2D )(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
- void ( APIENTRY * qglCullFace )(GLenum mode);
- void ( APIENTRY * qglDeleteLists )(GLuint list, GLsizei range);
- void ( APIENTRY * qglDeleteTextures )(GLsizei n, const GLuint *textures);
- void ( APIENTRY * qglDepthFunc )(GLenum func);
- void ( APIENTRY * qglDepthMask )(GLboolean flag);
- void ( APIENTRY * qglDepthRange )(GLclampd zNear, GLclampd zFar);
- void ( APIENTRY * qglDisable )(GLenum cap);
- void ( APIENTRY * qglDisableClientState )(GLenum array);
- void ( APIENTRY * qglDrawArrays )(GLenum mode, GLint first, GLsizei count);
- void ( APIENTRY * qglDrawBuffer )(GLenum mode);
- void ( APIENTRY * qglDrawElements )(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
- void ( APIENTRY * qglDrawPixels )(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
- void ( APIENTRY * qglEdgeFlag )(GLboolean flag);
- void ( APIENTRY * qglEdgeFlagPointer )(GLsizei stride, const GLvoid *pointer);
- void ( APIENTRY * qglEdgeFlagv )(const GLboolean *flag);
- void ( APIENTRY * qglEnable )(GLenum cap);
- void ( APIENTRY * qglEnableClientState )(GLenum array);
- void ( APIENTRY * qglEnd )(void);
- void ( APIENTRY * qglEndList )(void);
- void ( APIENTRY * qglEvalCoord1d )(GLdouble u);
- void ( APIENTRY * qglEvalCoord1dv )(const GLdouble *u);
- void ( APIENTRY * qglEvalCoord1f )(GLfloat u);
- void ( APIENTRY * qglEvalCoord1fv )(const GLfloat *u);
- void ( APIENTRY * qglEvalCoord2d )(GLdouble u, GLdouble v);
- void ( APIENTRY * qglEvalCoord2dv )(const GLdouble *u);
- void ( APIENTRY * qglEvalCoord2f )(GLfloat u, GLfloat v);
- void ( APIENTRY * qglEvalCoord2fv )(const GLfloat *u);
- void ( APIENTRY * qglEvalMesh1 )(GLenum mode, GLint i1, GLint i2);
- void ( APIENTRY * qglEvalMesh2 )(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2);
- void ( APIENTRY * qglEvalPoint1 )(GLint i);
- void ( APIENTRY * qglEvalPoint2 )(GLint i, GLint j);
- void ( APIENTRY * qglFeedbackBuffer )(GLsizei size, GLenum type, GLfloat *buffer);
- void ( APIENTRY * qglFinish )(void);
- void ( APIENTRY * qglFlush )(void);
- void ( APIENTRY * qglFogf )(GLenum pname, GLfloat param);
- void ( APIENTRY * qglFogfv )(GLenum pname, const GLfloat *params);
- void ( APIENTRY * qglFogi )(GLenum pname, GLint param);
- void ( APIENTRY * qglFogiv )(GLenum pname, const GLint *params);
- void ( APIENTRY * qglFrontFace )(GLenum mode);
- void ( APIENTRY * qglFrustum )(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
- GLuint ( APIENTRY * qglGenLists )(GLsizei range);
- void ( APIENTRY * qglGenTextures )(GLsizei n, GLuint *textures);
- void ( APIENTRY * qglGetBooleanv )(GLenum pname, GLboolean *params);
- void ( APIENTRY * qglGetClipPlane )(GLenum plane, GLdouble *equation);
- void ( APIENTRY * qglGetDoublev )(GLenum pname, GLdouble *params);
- GLenum ( APIENTRY * qglGetError )(void);
- void ( APIENTRY * qglGetFloatv )(GLenum pname, GLfloat *params);
- void ( APIENTRY * qglGetIntegerv )(GLenum pname, GLint *params);
- void ( APIENTRY * qglGetLightfv )(GLenum light, GLenum pname, GLfloat *params);
- void ( APIENTRY * qglGetLightiv )(GLenum light, GLenum pname, GLint *params);
- void ( APIENTRY * qglGetMapdv )(GLenum target, GLenum query, GLdouble *v);
- void ( APIENTRY * qglGetMapfv )(GLenum target, GLenum query, GLfloat *v);
- void ( APIENTRY * qglGetMapiv )(GLenum target, GLenum query, GLint *v);
- void ( APIENTRY * qglGetMaterialfv )(GLenum face, GLenum pname, GLfloat *params);
- void ( APIENTRY * qglGetMaterialiv )(GLenum face, GLenum pname, GLint *params);
- void ( APIENTRY * qglGetPixelMapfv )(GLenum map, GLfloat *values);
- void ( APIENTRY * qglGetPixelMapuiv )(GLenum map, GLuint *values);
- void ( APIENTRY * qglGetPixelMapusv )(GLenum map, GLushort *values);
- void ( APIENTRY * qglGetPointerv )(GLenum pname, GLvoid* *params);
- void ( APIENTRY * qglGetPolygonStipple )(GLubyte *mask);
- const GLubyte * ( APIENTRY * qglGetString )(GLenum name);
- void ( APIENTRY * qglGetTexEnvfv )(GLenum target, GLenum pname, GLfloat *params);
- void ( APIENTRY * qglGetTexEnviv )(GLenum target, GLenum pname, GLint *params);
- void ( APIENTRY * qglGetTexGendv )(GLenum coord, GLenum pname, GLdouble *params);
- void ( APIENTRY * qglGetTexGenfv )(GLenum coord, GLenum pname, GLfloat *params);
- void ( APIENTRY * qglGetTexGeniv )(GLenum coord, GLenum pname, GLint *params);
- void ( APIENTRY * qglGetTexImage )(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
- void ( APIENTRY * qglGetTexLevelParameterfv )(GLenum target, GLint level, GLenum pname, GLfloat *params);
- void ( APIENTRY * qglGetTexLevelParameteriv )(GLenum target, GLint level, GLenum pname, GLint *params);
- void ( APIENTRY * qglGetTexParameterfv )(GLenum target, GLenum pname, GLfloat *params);
- void ( APIENTRY * qglGetTexParameteriv )(GLenum target, GLenum pname, GLint *params);
- void ( APIENTRY * qglHint )(GLenum target, GLenum mode);
- void ( APIENTRY * qglIndexMask )(GLuint mask);
- void ( APIENTRY * qglIndexPointer )(GLenum type, GLsizei stride, const GLvoid *pointer);
- void ( APIENTRY * qglIndexd )(GLdouble c);
- void ( APIENTRY * qglIndexdv )(const GLdouble *c);
- void ( APIENTRY * qglIndexf )(GLfloat c);
- void ( APIENTRY * qglIndexfv )(const GLfloat *c);
- void ( APIENTRY * qglIndexi )(GLint c);
- void ( APIENTRY * qglIndexiv )(const GLint *c);
- void ( APIENTRY * qglIndexs )(GLshort c);
- void ( APIENTRY * qglIndexsv )(const GLshort *c);
- void ( APIENTRY * qglIndexub )(GLubyte c);
- void ( APIENTRY * qglIndexubv )(const GLubyte *c);
- void ( APIENTRY * qglInitNames )(void);
- void ( APIENTRY * qglInterleavedArrays )(GLenum format, GLsizei stride, const GLvoid *pointer);
- GLboolean ( APIENTRY * qglIsEnabled )(GLenum cap);
- GLboolean ( APIENTRY * qglIsList )(GLuint list);
- GLboolean ( APIENTRY * qglIsTexture )(GLuint texture);
- void ( APIENTRY * qglLightModelf )(GLenum pname, GLfloat param);
- void ( APIENTRY * qglLightModelfv )(GLenum pname, const GLfloat *params);
- void ( APIENTRY * qglLightModeli )(GLenum pname, GLint param);
- void ( APIENTRY * qglLightModeliv )(GLenum pname, const GLint *params);
- void ( APIENTRY * qglLightf )(GLenum light, GLenum pname, GLfloat param);
- void ( APIENTRY * qglLightfv )(GLenum light, GLenum pname, const GLfloat *params);
- void ( APIENTRY * qglLighti )(GLenum light, GLenum pname, GLint param);
- void ( APIENTRY * qglLightiv )(GLenum light, GLenum pname, const GLint *params);
- void ( APIENTRY * qglLineStipple )(GLint factor, GLushort pattern);
- void ( APIENTRY * qglLineWidth )(GLfloat width);
- void ( APIENTRY * qglListBase )(GLuint base);
- void ( APIENTRY * qglLoadIdentity )(void);
- void ( APIENTRY * qglLoadMatrixd )(const GLdouble *m);
- void ( APIENTRY * qglLoadMatrixf )(const GLfloat *m);
- void ( APIENTRY * qglLoadName )(GLuint name);
- void ( APIENTRY * qglLogicOp )(GLenum opcode);
- void ( APIENTRY * qglMap1d )(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points);
- void ( APIENTRY * qglMap1f )(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points);
- void ( APIENTRY * qglMap2d )(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points);
- void ( APIENTRY * qglMap2f )(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points);
- void ( APIENTRY * qglMapGrid1d )(GLint un, GLdouble u1, GLdouble u2);
- void ( APIENTRY * qglMapGrid1f )(GLint un, GLfloat u1, GLfloat u2);
- void ( APIENTRY * qglMapGrid2d )(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2);
- void ( APIENTRY * qglMapGrid2f )(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2);
- void ( APIENTRY * qglMaterialf )(GLenum face, GLenum pname, GLfloat param);
- void ( APIENTRY * qglMaterialfv )(GLenum face, GLenum pname, const GLfloat *params);
- void ( APIENTRY * qglMateriali )(GLenum face, GLenum pname, GLint param);
- void ( APIENTRY * qglMaterialiv )(GLenum face, GLenum pname, const GLint *params);
- void ( APIENTRY * qglMatrixMode )(GLenum mode);
- void ( APIENTRY * qglMultMatrixd )(const GLdouble *m);
- void ( APIENTRY * qglMultMatrixf )(const GLfloat *m);
- void ( APIENTRY * qglNewList )(GLuint list, GLenum mode);
- void ( APIENTRY * qglNormal3b )(GLbyte nx, GLbyte ny, GLbyte nz);
- void ( APIENTRY * qglNormal3bv )(const GLbyte *v);
- void ( APIENTRY * qglNormal3d )(GLdouble nx, GLdouble ny, GLdouble nz);
- void ( APIENTRY * qglNormal3dv )(const GLdouble *v);
- void ( APIENTRY * qglNormal3f )(GLfloat nx, GLfloat ny, GLfloat nz);
- void ( APIENTRY * qglNormal3fv )(const GLfloat *v);
- void ( APIENTRY * qglNormal3i )(GLint nx, GLint ny, GLint nz);
- void ( APIENTRY * qglNormal3iv )(const GLint *v);
- void ( APIENTRY * qglNormal3s )(GLshort nx, GLshort ny, GLshort nz);
- void ( APIENTRY * qglNormal3sv )(const GLshort *v);
- void ( APIENTRY * qglNormalPointer )(GLenum type, GLsizei stride, const GLvoid *pointer);
- void ( APIENTRY * qglOrtho )(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
- void ( APIENTRY * qglPassThrough )(GLfloat token);
- void ( APIENTRY * qglPixelMapfv )(GLenum map, GLsizei mapsize, const GLfloat *values);
- void ( APIENTRY * qglPixelMapuiv )(GLenum map, GLsizei mapsize, const GLuint *values);
- void ( APIENTRY * qglPixelMapusv )(GLenum map, GLsizei mapsize, const GLushort *values);
- void ( APIENTRY * qglPixelStoref )(GLenum pname, GLfloat param);
- void ( APIENTRY * qglPixelStorei )(GLenum pname, GLint param);
- void ( APIENTRY * qglPixelTransferf )(GLenum pname, GLfloat param);
- void ( APIENTRY * qglPixelTransferi )(GLenum pname, GLint param);
- void ( APIENTRY * qglPixelZoom )(GLfloat xfactor, GLfloat yfactor);
- void ( APIENTRY * qglPointSize )(GLfloat size);
- void ( APIENTRY * qglPolygonMode )(GLenum face, GLenum mode);
- void ( APIENTRY * qglPolygonOffset )(GLfloat factor, GLfloat units);
- void ( APIENTRY * qglPolygonStipple )(const GLubyte *mask);
- void ( APIENTRY * qglPopAttrib )(void);
- void ( APIENTRY * qglPopClientAttrib )(void);
- void ( APIENTRY * qglPopMatrix )(void);
- void ( APIENTRY * qglPopName )(void);
- void ( APIENTRY * qglPrioritizeTextures )(GLsizei n, const GLuint *textures, const GLclampf *priorities);
- void ( APIENTRY * qglPushAttrib )(GLbitfield mask);
- void ( APIENTRY * qglPushClientAttrib )(GLbitfield mask);
- void ( APIENTRY * qglPushMatrix )(void);
- void ( APIENTRY * qglPushName )(GLuint name);
- void ( APIENTRY * qglRasterPos2d )(GLdouble x, GLdouble y);
- void ( APIENTRY * qglRasterPos2dv )(const GLdouble *v);
- void ( APIENTRY * qglRasterPos2f )(GLfloat x, GLfloat y);
- void ( APIENTRY * qglRasterPos2fv )(const GLfloat *v);
- void ( APIENTRY * qglRasterPos2i )(GLint x, GLint y);
- void ( APIENTRY * qglRasterPos2iv )(const GLint *v);
- void ( APIENTRY * qglRasterPos2s )(GLshort x, GLshort y);
- void ( APIENTRY * qglRasterPos2sv )(const GLshort *v);
- void ( APIENTRY * qglRasterPos3d )(GLdouble x, GLdouble y, GLdouble z);
- void ( APIENTRY * qglRasterPos3dv )(const GLdouble *v);
- void ( APIENTRY * qglRasterPos3f )(GLfloat x, GLfloat y, GLfloat z);
- void ( APIENTRY * qglRasterPos3fv )(const GLfloat *v);
- void ( APIENTRY * qglRasterPos3i )(GLint x, GLint y, GLint z);
- void ( APIENTRY * qglRasterPos3iv )(const GLint *v);
- void ( APIENTRY * qglRasterPos3s )(GLshort x, GLshort y, GLshort z);
- void ( APIENTRY * qglRasterPos3sv )(const GLshort *v);
- void ( APIENTRY * qglRasterPos4d )(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
- void ( APIENTRY * qglRasterPos4dv )(const GLdouble *v);
- void ( APIENTRY * qglRasterPos4f )(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
- void ( APIENTRY * qglRasterPos4fv )(const GLfloat *v);
- void ( APIENTRY * qglRasterPos4i )(GLint x, GLint y, GLint z, GLint w);
- void ( APIENTRY * qglRasterPos4iv )(const GLint *v);
- void ( APIENTRY * qglRasterPos4s )(GLshort x, GLshort y, GLshort z, GLshort w);
- void ( APIENTRY * qglRasterPos4sv )(const GLshort *v);
- void ( APIENTRY * qglReadBuffer )(GLenum mode);
- void ( APIENTRY * qglReadPixels )(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
- void ( APIENTRY * qglRectd )(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2);
- void ( APIENTRY * qglRectdv )(const GLdouble *v1, const GLdouble *v2);
- void ( APIENTRY * qglRectf )(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
- void ( APIENTRY * qglRectfv )(const GLfloat *v1, const GLfloat *v2);
- void ( APIENTRY * qglRecti )(GLint x1, GLint y1, GLint x2, GLint y2);
- void ( APIENTRY * qglRectiv )(const GLint *v1, const GLint *v2);
- void ( APIENTRY * qglRects )(GLshort x1, GLshort y1, GLshort x2, GLshort y2);
- void ( APIENTRY * qglRectsv )(const GLshort *v1, const GLshort *v2);
- GLint ( APIENTRY * qglRenderMode )(GLenum mode);
- void ( APIENTRY * qglRotated )(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
- void ( APIENTRY * qglRotatef )(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
- void ( APIENTRY * qglScaled )(GLdouble x, GLdouble y, GLdouble z);
- void ( APIENTRY * qglScalef )(GLfloat x, GLfloat y, GLfloat z);
- void ( APIENTRY * qglScissor )(GLint x, GLint y, GLsizei width, GLsizei height);
- void ( APIENTRY * qglSelectBuffer )(GLsizei size, GLuint *buffer);
- void ( APIENTRY * qglShadeModel )(GLenum mode);
- void ( APIENTRY * qglStencilFunc )(GLenum func, GLint ref, GLuint mask);
- void ( APIENTRY * qglStencilMask )(GLuint mask);
- void ( APIENTRY * qglStencilOp )(GLenum fail, GLenum zfail, GLenum zpass);
- void ( APIENTRY * qglTexCoord1d )(GLdouble s);
- void ( APIENTRY * qglTexCoord1dv )(const GLdouble *v);
- void ( APIENTRY * qglTexCoord1f )(GLfloat s);
- void ( APIENTRY * qglTexCoord1fv )(const GLfloat *v);
- void ( APIENTRY * qglTexCoord1i )(GLint s);
- void ( APIENTRY * qglTexCoord1iv )(const GLint *v);
- void ( APIENTRY * qglTexCoord1s )(GLshort s);
- void ( APIENTRY * qglTexCoord1sv )(const GLshort *v);
- void ( APIENTRY * qglTexCoord2d )(GLdouble s, GLdouble t);
- void ( APIENTRY * qglTexCoord2dv )(const GLdouble *v);
- void ( APIENTRY * qglTexCoord2f )(GLfloat s, GLfloat t);
- void ( APIENTRY * qglTexCoord2fv )(const GLfloat *v);
- void ( APIENTRY * qglTexCoord2i )(GLint s, GLint t);
- void ( APIENTRY * qglTexCoord2iv )(const GLint *v);
- void ( APIENTRY * qglTexCoord2s )(GLshort s, GLshort t);
- void ( APIENTRY * qglTexCoord2sv )(const GLshort *v);
- void ( APIENTRY * qglTexCoord3d )(GLdouble s, GLdouble t, GLdouble r);
- void ( APIENTRY * qglTexCoord3dv )(const GLdouble *v);
- void ( APIENTRY * qglTexCoord3f )(GLfloat s, GLfloat t, GLfloat r);
- void ( APIENTRY * qglTexCoord3fv )(const GLfloat *v);
- void ( APIENTRY * qglTexCoord3i )(GLint s, GLint t, GLint r);
- void ( APIENTRY * qglTexCoord3iv )(const GLint *v);
- void ( APIENTRY * qglTexCoord3s )(GLshort s, GLshort t, GLshort r);
- void ( APIENTRY * qglTexCoord3sv )(const GLshort *v);
- void ( APIENTRY * qglTexCoord4d )(GLdouble s, GLdouble t, GLdouble r, GLdouble q);
- void ( APIENTRY * qglTexCoord4dv )(const GLdouble *v);
- void ( APIENTRY * qglTexCoord4f )(GLfloat s, GLfloat t, GLfloat r, GLfloat q);
- void ( APIENTRY * qglTexCoord4fv )(const GLfloat *v);
- void ( APIENTRY * qglTexCoord4i )(GLint s, GLint t, GLint r, GLint q);
- void ( APIENTRY * qglTexCoord4iv )(const GLint *v);
- void ( APIENTRY * qglTexCoord4s )(GLshort s, GLshort t, GLshort r, GLshort q);
- void ( APIENTRY * qglTexCoord4sv )(const GLshort *v);
- void ( APIENTRY * qglTexCoordPointer )(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
- void ( APIENTRY * qglTexEnvf )(GLenum target, GLenum pname, GLfloat param);
- void ( APIENTRY * qglTexEnvfv )(GLenum target, GLenum pname, const GLfloat *params);
- void ( APIENTRY * qglTexEnvi )(GLenum target, GLenum pname, GLint param);
- void ( APIENTRY * qglTexEnviv )(GLenum target, GLenum pname, const GLint *params);
- void ( APIENTRY * qglTexGend )(GLenum coord, GLenum pname, GLdouble param);
- void ( APIENTRY * qglTexGendv )(GLenum coord, GLenum pname, const GLdouble *params);
- void ( APIENTRY * qglTexGenf )(GLenum coord, GLenum pname, GLfloat param);
- void ( APIENTRY * qglTexGenfv )(GLenum coord, GLenum pname, const GLfloat *params);
- void ( APIENTRY * qglTexGeni )(GLenum coord, GLenum pname, GLint param);
- void ( APIENTRY * qglTexGeniv )(GLenum coord, GLenum pname, const GLint *params);
- void ( APIENTRY * qglTexImage1D )(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
- void ( APIENTRY * qglTexImage2D )(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
- void ( APIENTRY * qglTexParameterf )(GLenum target, GLenum pname, GLfloat param);
- void ( APIENTRY * qglTexParameterfv )(GLenum target, GLenum pname, const GLfloat *params);
- void ( APIENTRY * qglTexParameteri )(GLenum target, GLenum pname, GLint param);
- void ( APIENTRY * qglTexParameteriv )(GLenum target, GLenum pname, const GLint *params);
- void ( APIENTRY * qglTexSubImage1D )(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
- void ( APIENTRY * qglTexSubImage2D )(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
- void ( APIENTRY * qglTranslated )(GLdouble x, GLdouble y, GLdouble z);
- void ( APIENTRY * qglTranslatef )(GLfloat x, GLfloat y, GLfloat z);
- void ( APIENTRY * qglVertex2d )(GLdouble x, GLdouble y);
- void ( APIENTRY * qglVertex2dv )(const GLdouble *v);
- void ( APIENTRY * qglVertex2f )(GLfloat x, GLfloat y);
- void ( APIENTRY * qglVertex2fv )(const GLfloat *v);
- void ( APIENTRY * qglVertex2i )(GLint x, GLint y);
- void ( APIENTRY * qglVertex2iv )(const GLint *v);
- void ( APIENTRY * qglVertex2s )(GLshort x, GLshort y);
- void ( APIENTRY * qglVertex2sv )(const GLshort *v);
- void ( APIENTRY * qglVertex3d )(GLdouble x, GLdouble y, GLdouble z);
- void ( APIENTRY * qglVertex3dv )(const GLdouble *v);
- void ( APIENTRY * qglVertex3f )(GLfloat x, GLfloat y, GLfloat z);
- void ( APIENTRY * qglVertex3fv )(const GLfloat *v);
- void ( APIENTRY * qglVertex3i )(GLint x, GLint y, GLint z);
- void ( APIENTRY * qglVertex3iv )(const GLint *v);
- void ( APIENTRY * qglVertex3s )(GLshort x, GLshort y, GLshort z);
- void ( APIENTRY * qglVertex3sv )(const GLshort *v);
- void ( APIENTRY * qglVertex4d )(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
- void ( APIENTRY * qglVertex4dv )(const GLdouble *v);
- void ( APIENTRY * qglVertex4f )(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
- void ( APIENTRY * qglVertex4fv )(const GLfloat *v);
- void ( APIENTRY * qglVertex4i )(GLint x, GLint y, GLint z, GLint w);
- void ( APIENTRY * qglVertex4iv )(const GLint *v);
- void ( APIENTRY * qglVertex4s )(GLshort x, GLshort y, GLshort z, GLshort w);
- void ( APIENTRY * qglVertex4sv )(const GLshort *v);
- void ( APIENTRY * qglVertexPointer )(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
- void ( APIENTRY * qglViewport )(GLint x, GLint y, GLsizei width, GLsizei height);
- BOOL ( WINAPI * qwglSwapIntervalEXT)( int interval );
- BOOL ( WINAPI * qwglGetDeviceGammaRampEXT)( unsigned char *, unsigned char *, unsigned char * );
- BOOL ( WINAPI * qwglSetDeviceGammaRampEXT)( const unsigned char *, const unsigned char *, const unsigned char * );
- void ( APIENTRY * qglPointParameterfEXT)( GLenum param, GLfloat value );
- void ( APIENTRY * qglPointParameterfvEXT)( GLenum param, const GLfloat *value );
- void ( APIENTRY * qglColorTableEXT)( int, int, int, int, int, const void * );
- void ( APIENTRY * qglSelectTextureSGIS)( GLenum );
- void ( APIENTRY * qglMTexCoord2fSGIS)( GLenum, GLfloat, GLfloat );
- static void ( APIENTRY * dllAccum )(GLenum op, GLfloat value);
- static void ( APIENTRY * dllAlphaFunc )(GLenum func, GLclampf ref);
- GLboolean ( APIENTRY * dllAreTexturesResident )(GLsizei n, const GLuint *textures, GLboolean *residences);
- static void ( APIENTRY * dllArrayElement )(GLint i);
- static void ( APIENTRY * dllBegin )(GLenum mode);
- static void ( APIENTRY * dllBindTexture )(GLenum target, GLuint texture);
- static void ( APIENTRY * dllBitmap )(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
- static void ( APIENTRY * dllBlendFunc )(GLenum sfactor, GLenum dfactor);
- static void ( APIENTRY * dllCallList )(GLuint list);
- static void ( APIENTRY * dllCallLists )(GLsizei n, GLenum type, const GLvoid *lists);
- static void ( APIENTRY * dllClear )(GLbitfield mask);
- static void ( APIENTRY * dllClearAccum )(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
- static void ( APIENTRY * dllClearColor )(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
- static void ( APIENTRY * dllClearDepth )(GLclampd depth);
- static void ( APIENTRY * dllClearIndex )(GLfloat c);
- static void ( APIENTRY * dllClearStencil )(GLint s);
- static void ( APIENTRY * dllClipPlane )(GLenum plane, const GLdouble *equation);
- static void ( APIENTRY * dllColor3b )(GLbyte red, GLbyte green, GLbyte blue);
- static void ( APIENTRY * dllColor3bv )(const GLbyte *v);
- static void ( APIENTRY * dllColor3d )(GLdouble red, GLdouble green, GLdouble blue);
- static void ( APIENTRY * dllColor3dv )(const GLdouble *v);
- static void ( APIENTRY * dllColor3f )(GLfloat red, GLfloat green, GLfloat blue);
- static void ( APIENTRY * dllColor3fv )(const GLfloat *v);
- static void ( APIENTRY * dllColor3i )(GLint red, GLint green, GLint blue);
- static void ( APIENTRY * dllColor3iv )(const GLint *v);
- static void ( APIENTRY * dllColor3s )(GLshort red, GLshort green, GLshort blue);
- static void ( APIENTRY * dllColor3sv )(const GLshort *v);
- static void ( APIENTRY * dllColor3ub )(GLubyte red, GLubyte green, GLubyte blue);
- static void ( APIENTRY * dllColor3ubv )(const GLubyte *v);
- static void ( APIENTRY * dllColor3ui )(GLuint red, GLuint green, GLuint blue);
- static void ( APIENTRY * dllColor3uiv )(const GLuint *v);
- static void ( APIENTRY * dllColor3us )(GLushort red, GLushort green, GLushort blue);
- static void ( APIENTRY * dllColor3usv )(const GLushort *v);
- static void ( APIENTRY * dllColor4b )(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha);
- static void ( APIENTRY * dllColor4bv )(const GLbyte *v);
- static void ( APIENTRY * dllColor4d )(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha);
- static void ( APIENTRY * dllColor4dv )(const GLdouble *v);
- static void ( APIENTRY * dllColor4f )(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
- static void ( APIENTRY * dllColor4fv )(const GLfloat *v);
- static void ( APIENTRY * dllColor4i )(GLint red, GLint green, GLint blue, GLint alpha);
- static void ( APIENTRY * dllColor4iv )(const GLint *v);
- static void ( APIENTRY * dllColor4s )(GLshort red, GLshort green, GLshort blue, GLshort alpha);
- static void ( APIENTRY * dllColor4sv )(const GLshort *v);
- static void ( APIENTRY * dllColor4ub )(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
- static void ( APIENTRY * dllColor4ubv )(const GLubyte *v);
- static void ( APIENTRY * dllColor4ui )(GLuint red, GLuint green, GLuint blue, GLuint alpha);
- static void ( APIENTRY * dllColor4uiv )(const GLuint *v);
- static void ( APIENTRY * dllColor4us )(GLushort red, GLushort green, GLushort blue, GLushort alpha);
- static void ( APIENTRY * dllColor4usv )(const GLushort *v);
- static void ( APIENTRY * dllColorMask )(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
- static void ( APIENTRY * dllColorMaterial )(GLenum face, GLenum mode);
- static void ( APIENTRY * dllColorPointer )(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
- static void ( APIENTRY * dllCopyPixels )(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type);
- static void ( APIENTRY * dllCopyTexImage1D )(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLint border);
- static void ( APIENTRY * dllCopyTexImage2D )(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
- static void ( APIENTRY * dllCopyTexSubImage1D )(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
- static void ( APIENTRY * dllCopyTexSubImage2D )(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
- static void ( APIENTRY * dllCullFace )(GLenum mode);
- static void ( APIENTRY * dllDeleteLists )(GLuint list, GLsizei range);
- static void ( APIENTRY * dllDeleteTextures )(GLsizei n, const GLuint *textures);
- static void ( APIENTRY * dllDepthFunc )(GLenum func);
- static void ( APIENTRY * dllDepthMask )(GLboolean flag);
- static void ( APIENTRY * dllDepthRange )(GLclampd zNear, GLclampd zFar);
- static void ( APIENTRY * dllDisable )(GLenum cap);
- static void ( APIENTRY * dllDisableClientState )(GLenum array);
- static void ( APIENTRY * dllDrawArrays )(GLenum mode, GLint first, GLsizei count);
- static void ( APIENTRY * dllDrawBuffer )(GLenum mode);
- static void ( APIENTRY * dllDrawElements )(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
- static void ( APIENTRY * dllDrawPixels )(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
- static void ( APIENTRY * dllEdgeFlag )(GLboolean flag);
- static void ( APIENTRY * dllEdgeFlagPointer )(GLsizei stride, const GLvoid *pointer);
- static void ( APIENTRY * dllEdgeFlagv )(const GLboolean *flag);
- static void ( APIENTRY * dllEnable )(GLenum cap);
- static void ( APIENTRY * dllEnableClientState )(GLenum array);
- static void ( APIENTRY * dllEnd )(void);
- static void ( APIENTRY * dllEndList )(void);
- static void ( APIENTRY * dllEvalCoord1d )(GLdouble u);
- static void ( APIENTRY * dllEvalCoord1dv )(const GLdouble *u);
- static void ( APIENTRY * dllEvalCoord1f )(GLfloat u);
- static void ( APIENTRY * dllEvalCoord1fv )(const GLfloat *u);
- static void ( APIENTRY * dllEvalCoord2d )(GLdouble u, GLdouble v);
- static void ( APIENTRY * dllEvalCoord2dv )(const GLdouble *u);
- static void ( APIENTRY * dllEvalCoord2f )(GLfloat u, GLfloat v);
- static void ( APIENTRY * dllEvalCoord2fv )(const GLfloat *u);
- static void ( APIENTRY * dllEvalMesh1 )(GLenum mode, GLint i1, GLint i2);
- static void ( APIENTRY * dllEvalMesh2 )(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2);
- static void ( APIENTRY * dllEvalPoint1 )(GLint i);
- static void ( APIENTRY * dllEvalPoint2 )(GLint i, GLint j);
- static void ( APIENTRY * dllFeedbackBuffer )(GLsizei size, GLenum type, GLfloat *buffer);
- static void ( APIENTRY * dllFinish )(void);
- static void ( APIENTRY * dllFlush )(void);
- static void ( APIENTRY * dllFogf )(GLenum pname, GLfloat param);
- static void ( APIENTRY * dllFogfv )(GLenum pname, const GLfloat *params);
- static void ( APIENTRY * dllFogi )(GLenum pname, GLint param);
- static void ( APIENTRY * dllFogiv )(GLenum pname, const GLint *params);
- static void ( APIENTRY * dllFrontFace )(GLenum mode);
- static void ( APIENTRY * dllFrustum )(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
- GLuint ( APIENTRY * dllGenLists )(GLsizei range);
- static void ( APIENTRY * dllGenTextures )(GLsizei n, GLuint *textures);
- static void ( APIENTRY * dllGetBooleanv )(GLenum pname, GLboolean *params);
- static void ( APIENTRY * dllGetClipPlane )(GLenum plane, GLdouble *equation);
- static void ( APIENTRY * dllGetDoublev )(GLenum pname, GLdouble *params);
- GLenum ( APIENTRY * dllGetError )(void);
- static void ( APIENTRY * dllGetFloatv )(GLenum pname, GLfloat *params);
- static void ( APIENTRY * dllGetIntegerv )(GLenum pname, GLint *params);
- static void ( APIENTRY * dllGetLightfv )(GLenum light, GLenum pname, GLfloat *params);
- static void ( APIENTRY * dllGetLightiv )(GLenum light, GLenum pname, GLint *params);
- static void ( APIENTRY * dllGetMapdv )(GLenum target, GLenum query, GLdouble *v);
- static void ( APIENTRY * dllGetMapfv )(GLenum target, GLenum query, GLfloat *v);
- static void ( APIENTRY * dllGetMapiv )(GLenum target, GLenum query, GLint *v);
- static void ( APIENTRY * dllGetMaterialfv )(GLenum face, GLenum pname, GLfloat *params);
- static void ( APIENTRY * dllGetMaterialiv )(GLenum face, GLenum pname, GLint *params);
- static void ( APIENTRY * dllGetPixelMapfv )(GLenum map, GLfloat *values);
- static void ( APIENTRY * dllGetPixelMapuiv )(GLenum map, GLuint *values);
- static void ( APIENTRY * dllGetPixelMapusv )(GLenum map, GLushort *values);
- static void ( APIENTRY * dllGetPointerv )(GLenum pname, GLvoid* *params);
- static void ( APIENTRY * dllGetPolygonStipple )(GLubyte *mask);
- const GLubyte * ( APIENTRY * dllGetString )(GLenum name);
- static void ( APIENTRY * dllGetTexEnvfv )(GLenum target, GLenum pname, GLfloat *params);
- static void ( APIENTRY * dllGetTexEnviv )(GLenum target, GLenum pname, GLint *params);
- static void ( APIENTRY * dllGetTexGendv )(GLenum coord, GLenum pname, GLdouble *params);
- static void ( APIENTRY * dllGetTexGenfv )(GLenum coord, GLenum pname, GLfloat *params);
- static void ( APIENTRY * dllGetTexGeniv )(GLenum coord, GLenum pname, GLint *params);
- static void ( APIENTRY * dllGetTexImage )(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
- static void ( APIENTRY * dllGetTexLevelParameterfv )(GLenum target, GLint level, GLenum pname, GLfloat *params);
- static void ( APIENTRY * dllGetTexLevelParameteriv )(GLenum target, GLint level, GLenum pname, GLint *params);
- static void ( APIENTRY * dllGetTexParameterfv )(GLenum target, GLenum pname, GLfloat *params);
- static void ( APIENTRY * dllGetTexParameteriv )(GLenum target, GLenum pname, GLint *params);
- static void ( APIENTRY * dllHint )(GLenum target, GLenum mode);
- static void ( APIENTRY * dllIndexMask )(GLuint mask);
- static void ( APIENTRY * dllIndexPointer )(GLenum type, GLsizei stride, const GLvoid *pointer);
- static void ( APIENTRY * dllIndexd )(GLdouble c);
- static void ( APIENTRY * dllIndexdv )(const GLdouble *c);
- static void ( APIENTRY * dllIndexf )(GLfloat c);
- static void ( APIENTRY * dllIndexfv )(const GLfloat *c);
- static void ( APIENTRY * dllIndexi )(GLint c);
- static void ( APIENTRY * dllIndexiv )(const GLint *c);
- static void ( APIENTRY * dllIndexs )(GLshort c);
- static void ( APIENTRY * dllIndexsv )(const GLshort *c);
- static void ( APIENTRY * dllIndexub )(GLubyte c);
- static void ( APIENTRY * dllIndexubv )(const GLubyte *c);
- static void ( APIENTRY * dllInitNames )(void);
- static void ( APIENTRY * dllInterleavedArrays )(GLenum format, GLsizei stride, const GLvoid *pointer);
- GLboolean ( APIENTRY * dllIsEnabled )(GLenum cap);
- GLboolean ( APIENTRY * dllIsList )(GLuint list);
- GLboolean ( APIENTRY * dllIsTexture )(GLuint texture);
- static void ( APIENTRY * dllLightModelf )(GLenum pname, GLfloat param);
- static void ( APIENTRY * dllLightModelfv )(GLenum pname, const GLfloat *params);
- static void ( APIENTRY * dllLightModeli )(GLenum pname, GLint param);
- static void ( APIENTRY * dllLightModeliv )(GLenum pname, const GLint *params);
- static void ( APIENTRY * dllLightf )(GLenum light, GLenum pname, GLfloat param);
- static void ( APIENTRY * dllLightfv )(GLenum light, GLenum pname, const GLfloat *params);
- static void ( APIENTRY * dllLighti )(GLenum light, GLenum pname, GLint param);
- static void ( APIENTRY * dllLightiv )(GLenum light, GLenum pname, const GLint *params);
- static void ( APIENTRY * dllLineStipple )(GLint factor, GLushort pattern);
- static void ( APIENTRY * dllLineWidth )(GLfloat width);
- static void ( APIENTRY * dllListBase )(GLuint base);
- static void ( APIENTRY * dllLoadIdentity )(void);
- static void ( APIENTRY * dllLoadMatrixd )(const GLdouble *m);
- static void ( APIENTRY * dllLoadMatrixf )(const GLfloat *m);
- static void ( APIENTRY * dllLoadName )(GLuint name);
- static void ( APIENTRY * dllLogicOp )(GLenum opcode);
- static void ( APIENTRY * dllMap1d )(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points);
- static void ( APIENTRY * dllMap1f )(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points);
- static void ( APIENTRY * dllMap2d )(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points);
- static void ( APIENTRY * dllMap2f )(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points);
- static void ( APIENTRY * dllMapGrid1d )(GLint un, GLdouble u1, GLdouble u2);
- static void ( APIENTRY * dllMapGrid1f )(GLint un, GLfloat u1, GLfloat u2);
- static void ( APIENTRY * dllMapGrid2d )(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2);
- static void ( APIENTRY * dllMapGrid2f )(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2);
- static void ( APIENTRY * dllMaterialf )(GLenum face, GLenum pname, GLfloat param);
- static void ( APIENTRY * dllMaterialfv )(GLenum face, GLenum pname, const GLfloat *params);
- static void ( APIENTRY * dllMateriali )(GLenum face, GLenum pname, GLint param);
- static void ( APIENTRY * dllMaterialiv )(GLenum face, GLenum pname, const GLint *params);
- static void ( APIENTRY * dllMatrixMode )(GLenum mode);
- static void ( APIENTRY * dllMultMatrixd )(const GLdouble *m);
- static void ( APIENTRY * dllMultMatrixf )(const GLfloat *m);
- static void ( APIENTRY * dllNewList )(GLuint list, GLenum mode);
- static void ( APIENTRY * dllNormal3b )(GLbyte nx, GLbyte ny, GLbyte nz);
- static void ( APIENTRY * dllNormal3bv )(const GLbyte *v);
- static void ( APIENTRY * dllNormal3d )(GLdouble nx, GLdouble ny, GLdouble nz);
- static void ( APIENTRY * dllNormal3dv )(const GLdouble *v);
- static void ( APIENTRY * dllNormal3f )(GLfloat nx, GLfloat ny, GLfloat nz);
- static void ( APIENTRY * dllNormal3fv )(const GLfloat *v);
- static void ( APIENTRY * dllNormal3i )(GLint nx, GLint ny, GLint nz);
- static void ( APIENTRY * dllNormal3iv )(const GLint *v);
- static void ( APIENTRY * dllNormal3s )(GLshort nx, GLshort ny, GLshort nz);
- static void ( APIENTRY * dllNormal3sv )(const GLshort *v);
- static void ( APIENTRY * dllNormalPointer )(GLenum type, GLsizei stride, const GLvoid *pointer);
- static void ( APIENTRY * dllOrtho )(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
- static void ( APIENTRY * dllPassThrough )(GLfloat token);
- static void ( APIENTRY * dllPixelMapfv )(GLenum map, GLsizei mapsize, const GLfloat *values);
- static void ( APIENTRY * dllPixelMapuiv )(GLenum map, GLsizei mapsize, const GLuint *values);
- static void ( APIENTRY * dllPixelMapusv )(GLenum map, GLsizei mapsize, const GLushort *values);
- static void ( APIENTRY * dllPixelStoref )(GLenum pname, GLfloat param);
- static void ( APIENTRY * dllPixelStorei )(GLenum pname, GLint param);
- static void ( APIENTRY * dllPixelTransferf )(GLenum pname, GLfloat param);
- static void ( APIENTRY * dllPixelTransferi )(GLenum pname, GLint param);
- static void ( APIENTRY * dllPixelZoom )(GLfloat xfactor, GLfloat yfactor);
- static void ( APIENTRY * dllPointSize )(GLfloat size);
- static void ( APIENTRY * dllPolygonMode )(GLenum face, GLenum mode);
- static void ( APIENTRY * dllPolygonOffset )(GLfloat factor, GLfloat units);
- static void ( APIENTRY * dllPolygonStipple )(const GLubyte *mask);
- static void ( APIENTRY * dllPopAttrib )(void);
- static void ( APIENTRY * dllPopClientAttrib )(void);
- static void ( APIENTRY * dllPopMatrix )(void);
- static void ( APIENTRY * dllPopName )(void);
- static void ( APIENTRY * dllPrioritizeTextures )(GLsizei n, const GLuint *textures, const GLclampf *priorities);
- static void ( APIENTRY * dllPushAttrib )(GLbitfield mask);
- static void ( APIENTRY * dllPushClientAttrib )(GLbitfield mask);
- static void ( APIENTRY * dllPushMatrix )(void);
- static void ( APIENTRY * dllPushName )(GLuint name);
- static void ( APIENTRY * dllRasterPos2d )(GLdouble x, GLdouble y);
- static void ( APIENTRY * dllRasterPos2dv )(const GLdouble *v);
- static void ( APIENTRY * dllRasterPos2f )(GLfloat x, GLfloat y);
- static void ( APIENTRY * dllRasterPos2fv )(const GLfloat *v);
- static void ( APIENTRY * dllRasterPos2i )(GLint x, GLint y);
- static void ( APIENTRY * dllRasterPos2iv )(const GLint *v);
- static void ( APIENTRY * dllRasterPos2s )(GLshort x, GLshort y);
- static void ( APIENTRY * dllRasterPos2sv )(const GLshort *v);
- static void ( APIENTRY * dllRasterPos3d )(GLdouble x, GLdouble y, GLdouble z);
- static void ( APIENTRY * dllRasterPos3dv )(const GLdouble *v);
- static void ( APIENTRY * dllRasterPos3f )(GLfloat x, GLfloat y, GLfloat z);
- static void ( APIENTRY * dllRasterPos3fv )(const GLfloat *v);
- static void ( APIENTRY * dllRasterPos3i )(GLint x, GLint y, GLint z);
- static void ( APIENTRY * dllRasterPos3iv )(const GLint *v);
- static void ( APIENTRY * dllRasterPos3s )(GLshort x, GLshort y, GLshort z);
- static void ( APIENTRY * dllRasterPos3sv )(const GLshort *v);
- static void ( APIENTRY * dllRasterPos4d )(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
- static void ( APIENTRY * dllRasterPos4dv )(const GLdouble *v);
- static void ( APIENTRY * dllRasterPos4f )(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
- static void ( APIENTRY * dllRasterPos4fv )(const GLfloat *v);
- static void ( APIENTRY * dllRasterPos4i )(GLint x, GLint y, GLint z, GLint w);
- static void ( APIENTRY * dllRasterPos4iv )(const GLint *v);
- static void ( APIENTRY * dllRasterPos4s )(GLshort x, GLshort y, GLshort z, GLshort w);
- static void ( APIENTRY * dllRasterPos4sv )(const GLshort *v);
- static void ( APIENTRY * dllReadBuffer )(GLenum mode);
- static void ( APIENTRY * dllReadPixels )(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
- static void ( APIENTRY * dllRectd )(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2);
- static void ( APIENTRY * dllRectdv )(const GLdouble *v1, const GLdouble *v2);
- static void ( APIENTRY * dllRectf )(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
- static void ( APIENTRY * dllRectfv )(const GLfloat *v1, const GLfloat *v2);
- static void ( APIENTRY * dllRecti )(GLint x1, GLint y1, GLint x2, GLint y2);
- static void ( APIENTRY * dllRectiv )(const GLint *v1, const GLint *v2);
- static void ( APIENTRY * dllRects )(GLshort x1, GLshort y1, GLshort x2, GLshort y2);
- static void ( APIENTRY * dllRectsv )(const GLshort *v1, const GLshort *v2);
- GLint ( APIENTRY * dllRenderMode )(GLenum mode);
- static void ( APIENTRY * dllRotated )(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
- static void ( APIENTRY * dllRotatef )(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
- static void ( APIENTRY * dllScaled )(GLdouble x, GLdouble y, GLdouble z);
- static void ( APIENTRY * dllScalef )(GLfloat x, GLfloat y, GLfloat z);
- static void ( APIENTRY * dllScissor )(GLint x, GLint y, GLsizei width, GLsizei height);
- static void ( APIENTRY * dllSelectBuffer )(GLsizei size, GLuint *buffer);
- static void ( APIENTRY * dllShadeModel )(GLenum mode);
- static void ( APIENTRY * dllStencilFunc )(GLenum func, GLint ref, GLuint mask);
- static void ( APIENTRY * dllStencilMask )(GLuint mask);
- static void ( APIENTRY * dllStencilOp )(GLenum fail, GLenum zfail, GLenum zpass);
- static void ( APIENTRY * dllTexCoord1d )(GLdouble s);
- static void ( APIENTRY * dllTexCoord1dv )(const GLdouble *v);
- static void ( APIENTRY * dllTexCoord1f )(GLfloat s);
- static void ( APIENTRY * dllTexCoord1fv )(const GLfloat *v);
- static void ( APIENTRY * dllTexCoord1i )(GLint s);
- static void ( APIENTRY * dllTexCoord1iv )(const GLint *v);
- static void ( APIENTRY * dllTexCoord1s )(GLshort s);
- static void ( APIENTRY * dllTexCoord1sv )(const GLshort *v);
- static void ( APIENTRY * dllTexCoord2d )(GLdouble s, GLdouble t);
- static void ( APIENTRY * dllTexCoord2dv )(const GLdouble *v);
- static void ( APIENTRY * dllTexCoord2f )(GLfloat s, GLfloat t);
- static void ( APIENTRY * dllTexCoord2fv )(const GLfloat *v);
- static void ( APIENTRY * dllTexCoord2i )(GLint s, GLint t);
- static void ( APIENTRY * dllTexCoord2iv )(const GLint *v);
- static void ( APIENTRY * dllTexCoord2s )(GLshort s, GLshort t);
- static void ( APIENTRY * dllTexCoord2sv )(const GLshort *v);
- static void ( APIENTRY * dllTexCoord3d )(GLdouble s, GLdouble t, GLdouble r);
- static void ( APIENTRY * dllTexCoord3dv )(const GLdouble *v);
- static void ( APIENTRY * dllTexCoord3f )(GLfloat s, GLfloat t, GLfloat r);
- static void ( APIENTRY * dllTexCoord3fv )(const GLfloat *v);
- static void ( APIENTRY * dllTexCoord3i )(GLint s, GLint t, GLint r);
- static void ( APIENTRY * dllTexCoord3iv )(const GLint *v);
- static void ( APIENTRY * dllTexCoord3s )(GLshort s, GLshort t, GLshort r);
- static void ( APIENTRY * dllTexCoord3sv )(const GLshort *v);
- static void ( APIENTRY * dllTexCoord4d )(GLdouble s, GLdouble t, GLdouble r, GLdouble q);
- static void ( APIENTRY * dllTexCoord4dv )(const GLdouble *v);
- static void ( APIENTRY * dllTexCoord4f )(GLfloat s, GLfloat t, GLfloat r, GLfloat q);
- static void ( APIENTRY * dllTexCoord4fv )(const GLfloat *v);
- static void ( APIENTRY * dllTexCoord4i )(GLint s, GLint t, GLint r, GLint q);
- static void ( APIENTRY * dllTexCoord4iv )(const GLint *v);
- static void ( APIENTRY * dllTexCoord4s )(GLshort s, GLshort t, GLshort r, GLshort q);
- static void ( APIENTRY * dllTexCoord4sv )(const GLshort *v);
- static void ( APIENTRY * dllTexCoordPointer )(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
- static void ( APIENTRY * dllTexEnvf )(GLenum target, GLenum pname, GLfloat param);
- static void ( APIENTRY * dllTexEnvfv )(GLenum target, GLenum pname, const GLfloat *params);
- static void ( APIENTRY * dllTexEnvi )(GLenum target, GLenum pname, GLint param);
- static void ( APIENTRY * dllTexEnviv )(GLenum target, GLenum pname, const GLint *params);
- static void ( APIENTRY * dllTexGend )(GLenum coord, GLenum pname, GLdouble param);
- static void ( APIENTRY * dllTexGendv )(GLenum coord, GLenum pname, const GLdouble *params);
- static void ( APIENTRY * dllTexGenf )(GLenum coord, GLenum pname, GLfloat param);
- static void ( APIENTRY * dllTexGenfv )(GLenum coord, GLenum pname, const GLfloat *params);
- static void ( APIENTRY * dllTexGeni )(GLenum coord, GLenum pname, GLint param);
- static void ( APIENTRY * dllTexGeniv )(GLenum coord, GLenum pname, const GLint *params);
- static void ( APIENTRY * dllTexImage1D )(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
- static void ( APIENTRY * dllTexImage2D )(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
- static void ( APIENTRY * dllTexParameterf )(GLenum target, GLenum pname, GLfloat param);
- static void ( APIENTRY * dllTexParameterfv )(GLenum target, GLenum pname, const GLfloat *params);
- static void ( APIENTRY * dllTexParameteri )(GLenum target, GLenum pname, GLint param);
- static void ( APIENTRY * dllTexParameteriv )(GLenum target, GLenum pname, const GLint *params);
- static void ( APIENTRY * dllTexSubImage1D )(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
- static void ( APIENTRY * dllTexSubImage2D )(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
- static void ( APIENTRY * dllTranslated )(GLdouble x, GLdouble y, GLdouble z);
- static void ( APIENTRY * dllTranslatef )(GLfloat x, GLfloat y, GLfloat z);
- static void ( APIENTRY * dllVertex2d )(GLdouble x, GLdouble y);
- static void ( APIENTRY * dllVertex2dv )(const GLdouble *v);
- static void ( APIENTRY * dllVertex2f )(GLfloat x, GLfloat y);
- static void ( APIENTRY * dllVertex2fv )(const GLfloat *v);
- static void ( APIENTRY * dllVertex2i )(GLint x, GLint y);
- static void ( APIENTRY * dllVertex2iv )(const GLint *v);
- static void ( APIENTRY * dllVertex2s )(GLshort x, GLshort y);
- static void ( APIENTRY * dllVertex2sv )(const GLshort *v);
- static void ( APIENTRY * dllVertex3d )(GLdouble x, GLdouble y, GLdouble z);
- static void ( APIENTRY * dllVertex3dv )(const GLdouble *v);
- static void ( APIENTRY * dllVertex3f )(GLfloat x, GLfloat y, GLfloat z);
- static void ( APIENTRY * dllVertex3fv )(const GLfloat *v);
- static void ( APIENTRY * dllVertex3i )(GLint x, GLint y, GLint z);
- static void ( APIENTRY * dllVertex3iv )(const GLint *v);
- static void ( APIENTRY * dllVertex3s )(GLshort x, GLshort y, GLshort z);
- static void ( APIENTRY * dllVertex3sv )(const GLshort *v);
- static void ( APIENTRY * dllVertex4d )(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
- static void ( APIENTRY * dllVertex4dv )(const GLdouble *v);
- static void ( APIENTRY * dllVertex4f )(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
- static void ( APIENTRY * dllVertex4fv )(const GLfloat *v);
- static void ( APIENTRY * dllVertex4i )(GLint x, GLint y, GLint z, GLint w);
- static void ( APIENTRY * dllVertex4iv )(const GLint *v);
- static void ( APIENTRY * dllVertex4s )(GLshort x, GLshort y, GLshort z, GLshort w);
- static void ( APIENTRY * dllVertex4sv )(const GLshort *v);
- static void ( APIENTRY * dllVertexPointer )(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
- static void ( APIENTRY * dllViewport )(GLint x, GLint y, GLsizei width, GLsizei height);
- /*
- ** QGL_Shutdown
- **
- ** Unloads the specified DLL then nulls out all the proc pointers.
- */
- void QGL_Shutdown( void )
- {
- if (g_hGLDLL)
- {
- ::FreeLibrary(g_hGLDLL);
- g_hGLDLL = NULL;
- }
- qglAccum = NULL;
- qglAlphaFunc = NULL;
- qglAreTexturesResident = NULL;
- qglArrayElement = NULL;
- qglBegin = NULL;
- qglBindTexture = NULL;
- qglBitmap = NULL;
- qglBlendFunc = NULL;
- qglCallList = NULL;
- qglCallLists = NULL;
- qglClear = NULL;
- qglClearAccum = NULL;
- qglClearColor = NULL;
- qglClearDepth = NULL;
- qglClearIndex = NULL;
- qglClearStencil = NULL;
- qglClipPlane = NULL;
- qglColor3b = NULL;
- qglColor3bv = NULL;
- qglColor3d = NULL;
- qglColor3dv = NULL;
- qglColor3f = NULL;
- qglColor3fv = NULL;
- qglColor3i = NULL;
- qglColor3iv = NULL;
- qglColor3s = NULL;
- qglColor3sv = NULL;
- qglColor3ub = NULL;
- qglColor3ubv = NULL;
- qglColor3ui = NULL;
- qglColor3uiv = NULL;
- qglColor3us = NULL;
- qglColor3usv = NULL;
- qglColor4b = NULL;
- qglColor4bv = NULL;
- qglColor4d = NULL;
- qglColor4dv = NULL;
- qglColor4f = NULL;
- qglColor4fv = NULL;
- qglColor4i = NULL;
- qglColor4iv = NULL;
- qglColor4s = NULL;
- qglColor4sv = NULL;
- qglColor4ub = NULL;
- qglColor4ubv = NULL;
- qglColor4ui = NULL;
- qglColor4uiv = NULL;
- qglColor4us = NULL;
- qglColor4usv = NULL;
- qglColorMask = NULL;
- qglColorMaterial = NULL;
- qglColorPointer = NULL;
- qglCopyPixels = NULL;
- qglCopyTexImage1D = NULL;
- qglCopyTexImage2D = NULL;
- qglCopyTexSubImage1D = NULL;
- qglCopyTexSubImage2D = NULL;
- qglCullFace = NULL;
- qglDeleteLists = NULL;
- qglDeleteTextures = NULL;
- qglDepthFunc = NULL;
- qglDepthMask = NULL;
- qglDepthRange = NULL;
- qglDisable = NULL;
- qglDisableClientState = NULL;
- qglDrawArrays = NULL;
- qglDrawBuffer = NULL;
- qglDrawElements = NULL;
- qglDrawPixels = NULL;
- qglEdgeFlag = NULL;
- qglEdgeFlagPointer = NULL;
- qglEdgeFlagv = NULL;
- qglEnable = NULL;
- qglEnableClientState = NULL;
- qglEnd = NULL;
- qglEndList = NULL;
- qglEvalCoord1d = NULL;
- qglEvalCoord1dv = NULL;
- qglEvalCoord1f = NULL;
- qglEvalCoord1fv = NULL;
- qglEvalCoord2d = NULL;
- qglEvalCoord2dv = NULL;
- qglEvalCoord2f = NULL;
- qglEvalCoord2fv = NULL;
- qglEvalMesh1 = NULL;
- qglEvalMesh2 = NULL;
- qglEvalPoint1 = NULL;
- qglEvalPoint2 = NULL;
- qglFeedbackBuffer = NULL;
- qglFinish = NULL;
- qglFlush = NULL;
- qglFogf = NULL;
- qglFogfv = NULL;
- qglFogi = NULL;
- qglFogiv = NULL;
- qglFrontFace = NULL;
- qglFrustum = NULL;
- qglGenLists = NULL;
- qglGenTextures = NULL;
- qglGetBooleanv = NULL;
- qglGetClipPlane = NULL;
- qglGetDoublev = NULL;
- qglGetError = NULL;
- qglGetFloatv = NULL;
- qglGetIntegerv = NULL;
- qglGetLightfv = NULL;
- qglGetLightiv = NULL;
- qglGetMapdv = NULL;
- qglGetMapfv = NULL;
- qglGetMapiv = NULL;
- qglGetMaterialfv = NULL;
- qglGetMaterialiv = NULL;
- qglGetPixelMapfv = NULL;
- qglGetPixelMapuiv = NULL;
- qglGetPixelMapusv = NULL;
- qglGetPointerv = NULL;
- qglGetPolygonStipple = NULL;
- qglGetString = NULL;
- qglGetTexEnvfv = NULL;
- qglGetTexEnviv = NULL;
- qglGetTexGendv = NULL;
- qglGetTexGenfv = NULL;
- qglGetTexGeniv = NULL;
- qglGetTexImage = NULL;
- qglGetTexLevelParameterfv = NULL;
- qglGetTexLevelParameteriv = NULL;
- qglGetTexParameterfv = NULL;
- qglGetTexParameteriv = NULL;
- qglHint = NULL;
- qglIndexMask = NULL;
- qglIndexPointer = NULL;
- qglIndexd = NULL;
- qglIndexdv = NULL;
- qglIndexf = NULL;
- qglIndexfv = NULL;
- qglIndexi = NULL;
- qglIndexiv = NULL;
- qglIndexs = NULL;
- qglIndexsv = NULL;
- qglIndexub = NULL;
- qglIndexubv = NULL;
- qglInitNames = NULL;
- qglInterleavedArrays = NULL;
- qglIsEnabled = NULL;
- qglIsList = NULL;
- qglIsTexture = NULL;
- qglLightModelf = NULL;
- qglLightModelfv = NULL;
- qglLightModeli = NULL;
- qglLightModeliv = NULL;
- qglLightf = NULL;
- qglLightfv = NULL;
- qglLighti = NULL;
- qglLightiv = NULL;
- qglLineStipple = NULL;
- qglLineWidth = NULL;
- qglListBase = NULL;
- qglLoadIdentity = NULL;
- qglLoadMatrixd = NULL;
- qglLoadMatrixf = NULL;
- qglLoadName = NULL;
- qglLogicOp = NULL;
- qglMap1d = NULL;
- qglMap1f = NULL;
- qglMap2d = NULL;
- qglMap2f = NULL;
- qglMapGrid1d = NULL;
- qglMapGrid1f = NULL;
- qglMapGrid2d = NULL;
- qglMapGrid2f = NULL;
- qglMaterialf = NULL;
- qglMaterialfv = NULL;
- qglMateriali = NULL;
- qglMaterialiv = NULL;
- qglMatrixMode = NULL;
- qglMultMatrixd = NULL;
- qglMultMatrixf = NULL;
- qglNewList = NULL;
- qglNormal3b = NULL;
- qglNormal3bv = NULL;
- qglNormal3d = NULL;
- qglNormal3dv = NULL;
- qglNormal3f = NULL;
- qglNormal3fv = NULL;
- qglNormal3i = NULL;
- qglNormal3iv = NULL;
- qglNormal3s = NULL;
- qglNormal3sv = NULL;
- qglNormalPointer = NULL;
- qglOrtho = NULL;
- qglPassThrough = NULL;
- qglPixelMapfv = NULL;
- qglPixelMapuiv = NULL;
- qglPixelMapusv = NULL;
- qglPixelStoref = NULL;
- qglPixelStorei = NULL;
- qglPixelTransferf = NULL;
- qglPixelTransferi = NULL;
- qglPixelZoom = NULL;
- qglPointSize = NULL;
- qglPolygonMode = NULL;
- qglPolygonOffset = NULL;
- qglPolygonStipple = NULL;
- qglPopAttrib = NULL;
- qglPopClientAttrib = NULL;
- qglPopMatrix = NULL;
- qglPopName = NULL;
- qglPrioritizeTextures = NULL;
- qglPushAttrib = NULL;
- qglPushClientAttrib = NULL;
- qglPushMatrix = NULL;
- qglPushName = NULL;
- qglRasterPos2d = NULL;
- qglRasterPos2dv = NULL;
- qglRasterPos2f = NULL;
- qglRasterPos2fv = NULL;
- qglRasterPos2i = NULL;
- qglRasterPos2iv = NULL;
- qglRasterPos2s = NULL;
- qglRasterPos2sv = NULL;
- qglRasterPos3d = NULL;
- qglRasterPos3dv = NULL;
- qglRasterPos3f = NULL;
- qglRasterPos3fv = NULL;
- qglRasterPos3i = NULL;
- qglRasterPos3iv = NULL;
- qglRasterPos3s = NULL;
- qglRasterPos3sv = NULL;
- qglRasterPos4d = NULL;
- qglRasterPos4dv = NULL;
- qglRasterPos4f = NULL;
- qglRasterPos4fv = NULL;
- qglRasterPos4i = NULL;
- qglRasterPos4iv = NULL;
- qglRasterPos4s = NULL;
- qglRasterPos4sv = NULL;
- qglReadBuffer = NULL;
- qglReadPixels = NULL;
- qglRectd = NULL;
- qglRectdv = NULL;
- qglRectf = NULL;
- qglRectfv = NULL;
- qglRecti = NULL;
- qglRectiv = NULL;
- qglRects = NULL;
- qglRectsv = NULL;
- qglRenderMode = NULL;
- qglRotated = NULL;
- qglRotatef = NULL;
- qglScaled = NULL;
- qglScalef = NULL;
- qglScissor = NULL;
- qglSelectBuffer = NULL;
- qglShadeModel = NULL;
- qglStencilFunc = NULL;
- qglStencilMask = NULL;
- qglStencilOp = NULL;
- qglTexCoord1d = NULL;
- qglTexCoord1dv = NULL;
- qglTexCoord1f = NULL;
- qglTexCoord1fv = NULL;
- qglTexCoord1i = NULL;
- qglTexCoord1iv = NULL;
- qglTexCoord1s = NULL;
- qglTexCoord1sv = NULL;
- qglTexCoord2d = NULL;
- qglTexCoord2dv = NULL;
- qglTexCoord2f = NULL;
- qglTexCoord2fv = NULL;
- qglTexCoord2i = NULL;
- qglTexCoord2iv = NULL;
- qglTexCoord2s = NULL;
- qglTexCoord2sv = NULL;
- qglTexCoord3d = NULL;
- qglTexCoord3dv = NULL;
- qglTexCoord3f = NULL;
- qglTexCoord3fv = NULL;
- qglTexCoord3i = NULL;
- qglTexCoord3iv = NULL;
- qglTexCoord3s = NULL;
- qglTexCoord3sv = NULL;
- qglTexCoord4d = NULL;
- qglTexCoord4dv = NULL;
- qglTexCoord4f = NULL;
- qglTexCoord4fv = NULL;
- qglTexCoord4i = NULL;
- qglTexCoord4iv = NULL;
- qglTexCoord4s = NULL;
- qglTexCoord4sv = NULL;
- qglTexCoordPointer = NULL;
- qglTexEnvf = NULL;
- qglTexEnvfv = NULL;
- qglTexEnvi = NULL;
- qglTexEnviv = NULL;
- qglTexGend = NULL;
- qglTexGendv = NULL;
- qglTexGenf = NULL;
- qglTexGenfv = NULL;
- qglTexGeni = NULL;
- qglTexGeniv = NULL;
- qglTexImage1D = NULL;
- qglTexImage2D = NULL;
- qglTexParameterf = NULL;
- qglTexParameterfv = NULL;
- qglTexParameteri = NULL;
- qglTexParameteriv = NULL;
- qglTexSubImage1D = NULL;
- qglTexSubImage2D = NULL;
- qglTranslated = NULL;
- qglTranslatef = NULL;
- qglVertex2d = NULL;
- qglVertex2dv = NULL;
- qglVertex2f = NULL;
- qglVertex2fv = NULL;
- qglVertex2i = NULL;
- qglVertex2iv = NULL;
- qglVertex2s = NULL;
- qglVertex2sv = NULL;
- qglVertex3d = NULL;
- qglVertex3dv = NULL;
- qglVertex3f = NULL;
- qglVertex3fv = NULL;
- qglVertex3i = NULL;
- qglVertex3iv = NULL;
- qglVertex3s = NULL;
- qglVertex3sv = NULL;
- qglVertex4d = NULL;
- qglVertex4dv = NULL;
- qglVertex4f = NULL;
- qglVertex4fv = NULL;
- qglVertex4i = NULL;
- qglVertex4iv = NULL;
- qglVertex4s = NULL;
- qglVertex4sv = NULL;
- qglVertexPointer = NULL;
- qglViewport = NULL;
- qwglCopyContext = NULL;
- qwglCreateContext = NULL;
- qwglCreateLayerContext = NULL;
- qwglDeleteContext = NULL;
- qwglDescribeLayerPlane = NULL;
- qwglGetCurrentContext = NULL;
- qwglGetCurrentDC = NULL;
- qwglGetLayerPaletteEntries = NULL;
- qwglGetProcAddress = NULL;
- qwglMakeCurrent = NULL;
- qwglRealizeLayerPalette = NULL;
- qwglSetLayerPaletteEntries = NULL;
- qwglShareLists = NULL;
- qwglSwapLayerBuffers = NULL;
- qwglUseFontBitmaps = NULL;
- qwglUseFontOutlines = NULL;
- qwglChoosePixelFormat = NULL;
- qwglDescribePixelFormat = NULL;
- qwglGetPixelFormat = NULL;
- qwglSetPixelFormat = NULL;
- qwglSwapBuffers = NULL;
- qwglSwapIntervalEXT = NULL;
- qwglGetDeviceGammaRampEXT = NULL;
- qwglSetDeviceGammaRampEXT = NULL;
- }
- # define GPA(h, a ) GetProcAddress( h, a )
- /*
- ** QGL_Init
- **
- ** This is responsible for binding our qgl function pointers to
- ** the appropriate GL stuff. In Windows this means doing a
- ** LoadLibrary and a bunch of calls to GetProcAddress. On other
- ** operating systems we need to do the right thing, whatever that
- ** might be.
- **
- */
- qboolean QGL_Init(const char *dllname )
- {
- g_hGLDLL = ::LoadLibrary(dllname);
- qglAccum = dllAccum = GPA(g_hGLDLL, "glAccum" );
- qglAlphaFunc = dllAlphaFunc = GPA(g_hGLDLL, "glAlphaFunc" );
- qglAreTexturesResident = dllAreTexturesResident = GPA(g_hGLDLL, "glAreTexturesResident" );
- qglArrayElement = dllArrayElement = GPA(g_hGLDLL, "glArrayElement" );
- qglBegin = dllBegin = GPA(g_hGLDLL, "glBegin" );
- qglBindTexture = dllBindTexture = GPA(g_hGLDLL, "glBindTexture" );
- qglBitmap = dllBitmap = GPA(g_hGLDLL, "glBitmap" );
- qglBlendFunc = dllBlendFunc = GPA(g_hGLDLL, "glBlendFunc" );
- qglCallList = dllCallList = GPA(g_hGLDLL, "glCallList" );
- qglCallLists = dllCallLists = GPA(g_hGLDLL, "glCallLists" );
- qglClear = dllClear = GPA(g_hGLDLL, "glClear" );
- qglClearAccum = dllClearAccum = GPA(g_hGLDLL, "glClearAccum" );
- qglClearColor = dllClearColor = GPA(g_hGLDLL, "glClearColor" );
- qglClearDepth = dllClearDepth = GPA(g_hGLDLL, "glClearDepth" );
- qglClearIndex = dllClearIndex = GPA(g_hGLDLL, "glClearIndex" );
- qglClearStencil = dllClearStencil = GPA(g_hGLDLL, "glClearStencil" );
- qglClipPlane = dllClipPlane = GPA(g_hGLDLL, "glClipPlane" );
- qglColor3b = dllColor3b = GPA(g_hGLDLL, "glColor3b" );
- qglColor3bv = dllColor3bv = GPA(g_hGLDLL, "glColor3bv" );
- qglColor3d = dllColor3d = GPA(g_hGLDLL, "glColor3d" );
- qglColor3dv = dllColor3dv = GPA(g_hGLDLL, "glColor3dv" );
- qglColor3f = dllColor3f = GPA(g_hGLDLL, "glColor3f" );
- qglColor3fv = dllColor3fv = GPA(g_hGLDLL, "glColor3fv" );
- qglColor3i = dllColor3i = GPA(g_hGLDLL, "glColor3i" );
- qglColor3iv = dllColor3iv = GPA(g_hGLDLL, "glColor3iv" );
- qglColor3s = dllColor3s = GPA(g_hGLDLL, "glColor3s" );
- qglColor3sv = dllColor3sv = GPA(g_hGLDLL, "glColor3sv" );
- qglColor3ub = dllColor3ub = GPA(g_hGLDLL, "glColor3ub" );
- qglColor3ubv = dllColor3ubv = GPA(g_hGLDLL, "glColor3ubv" );
- qglColor3ui = dllColor3ui = GPA(g_hGLDLL, "glColor3ui" );
- qglColor3uiv = dllColor3uiv = GPA(g_hGLDLL, "glColor3uiv" );
- qglColor3us = dllColor3us = GPA(g_hGLDLL, "glColor3us" );
- qglColor3usv = dllColor3usv = GPA(g_hGLDLL, "glColor3usv" );
- qglColor4b = dllColor4b = GPA(g_hGLDLL, "glColor4b" );
- qglColor4bv = dllColor4bv = GPA(g_hGLDLL, "glColor4bv" );
- qglColor4d = dllColor4d = GPA(g_hGLDLL, "glColor4d" );
- qglColor4dv = dllColor4dv = GPA(g_hGLDLL, "glColor4dv" );
- qglColor4f = dllColor4f = GPA(g_hGLDLL, "glColor4f" );
- qglColor4fv = dllColor4fv = GPA(g_hGLDLL, "glColor4fv" );
- qglColor4i = dllColor4i = GPA(g_hGLDLL, "glColor4i" );
- qglColor4iv = dllColor4iv = GPA(g_hGLDLL, "glColor4iv" );
- qglColor4s = dllColor4s = GPA(g_hGLDLL, "glColor4s" );
- qglColor4sv = dllColor4sv = GPA(g_hGLDLL, "glColor4sv" );
- qglColor4ub = dllColor4ub = GPA(g_hGLDLL, "glColor4ub" );
- qglColor4ubv = dllColor4ubv = GPA(g_hGLDLL, "glColor4ubv" );
- qglColor4ui = dllColor4ui = GPA(g_hGLDLL, "glColor4ui" );
- qglColor4uiv = dllColor4uiv = GPA(g_hGLDLL, "glColor4uiv" );
- qglColor4us = dllColor4us = GPA(g_hGLDLL, "glColor4us" );
- qglColor4usv = dllColor4usv = GPA(g_hGLDLL, "glColor4usv" );
- qglColorMask = dllColorMask = GPA(g_hGLDLL, "glColorMask" );
- qglColorMaterial = dllColorMaterial = GPA(g_hGLDLL, "glColorMaterial" );
- qglColorPointer = dllColorPointer = GPA(g_hGLDLL, "glColorPointer" );
- qglCopyPixels = dllCopyPixels = GPA(g_hGLDLL, "glCopyPixels" );
- qglCopyTexImage1D = dllCopyTexImage1D = GPA(g_hGLDLL, "glCopyTexImage1D" );
- qglCopyTexImage2D = dllCopyTexImage2D = GPA(g_hGLDLL, "glCopyTexImage2D" );
- qglCopyTexSubImage1D = dllCopyTexSubImage1D = GPA(g_hGLDLL, "glCopyTexSubImage1D" );
- qglCopyTexSubImage2D = dllCopyTexSubImage2D = GPA(g_hGLDLL, "glCopyTexSubImage2D" );
- qglCullFace = dllCullFace = GPA(g_hGLDLL, "glCullFace" );
- qglDeleteLists = dllDeleteLists = GPA(g_hGLDLL, "glDeleteLists" );
- qglDeleteTextures = dllDeleteTextures = GPA(g_hGLDLL, "glDeleteTextures" );
- qglDepthFunc = dllDepthFunc = GPA(g_hGLDLL, "glDepthFunc" );
- qglDepthMask = dllDepthMask = GPA(g_hGLDLL, "glDepthMask" );
- qglDepthRange = dllDepthRange = GPA(g_hGLDLL, "glDepthRange" );
- qglDisable = dllDisable = GPA(g_hGLDLL, "glDisable" );
- qglDisableClientState = dllDisableClientState = GPA(g_hGLDLL, "glDisableClientState" );
- qglDrawArrays = dllDrawArrays = GPA(g_hGLDLL, "glDrawArrays" );
- qglDrawBuffer = dllDrawBuffer = GPA(g_hGLDLL, "glDrawBuffer" );
- qglDrawElements = dllDrawElements = GPA(g_hGLDLL, "glDrawElements" );
- qglDrawPixels = dllDrawPixels = GPA(g_hGLDLL, "glDrawPixels" );
- qglEdgeFlag = dllEdgeFlag = GPA(g_hGLDLL, "glEdgeFlag" );
- qglEdgeFlagPointer = dllEdgeFlagPointer = GPA(g_hGLDLL, "glEdgeFlagPointer" );
- qglEdgeFlagv = dllEdgeFlagv = GPA(g_hGLDLL, "glEdgeFlagv" );
- qglEnable = dllEnable = GPA(g_hGLDLL, "glEnable" );
- qglEnableClientState = dllEnableClientState = GPA(g_hGLDLL, "glEnableClientState" );
- qglEnd = dllEnd = GPA(g_hGLDLL, "glEnd" );
- qglEndList = dllEndList = GPA(g_hGLDLL, "glEndList" );
- qglEvalCoord1d = dllEvalCoord1d = GPA(g_hGLDLL, "glEvalCoord1d" );
- qglEvalCoord1dv = dllEvalCoord1dv = GPA(g_hGLDLL, "glEvalCoord1dv" );
- qglEvalCoord1f = dllEvalCoord1f = GPA(g_hGLDLL, "glEvalCoord1f" );
- qglEvalCoord1fv = dllEvalCoord1fv = GPA(g_hGLDLL, "glEvalCoord1fv" );
- qglEvalCoord2d = dllEvalCoord2d = GPA(g_hGLDLL, "glEvalCoord2d" );
- qglEvalCoord2dv = dllEvalCoord2dv = GPA(g_hGLDLL, "glEvalCoord2dv" );
- qglEvalCoord2f = dllEvalCoord2f = GPA(g_hGLDLL, "glEvalCoord2f" );
- qglEvalCoord2fv = dllEvalCoord2fv = GPA(g_hGLDLL, "glEvalCoord2fv" );
- qglEvalMesh1 = dllEvalMesh1 = GPA(g_hGLDLL, "glEvalMesh1" );
- qglEvalMesh2 = dllEvalMesh2 = GPA(g_hGLDLL, "glEvalMesh2" );
- qglEvalPoint1 = dllEvalPoint1 = GPA(g_hGLDLL, "glEvalPoint1" );
- qglEvalPoint2 = dllEvalPoint2 = GPA(g_hGLDLL, "glEvalPoint2" );
- qglFeedbackBuffer = dllFeedbackBuffer = GPA(g_hGLDLL, "glFeedbackBuffer" );
- qglFinish = dllFinish = GPA(g_hGLDLL, "glFinish" );
- qglFlush = dllFlush = GPA(g_hGLDLL, "glFlush" );
- qglFogf = dllFogf = GPA(g_hGLDLL, "glFogf" );
- qglFogfv = dllFogfv = GPA(g_hGLDLL, "glFogfv" );
- qglFogi = dllFogi = GPA(g_hGLDLL, "glFogi" );
- qglFogiv = dllFogiv = GPA(g_hGLDLL, "glFogiv" );
- qglFrontFace = dllFrontFace = GPA(g_hGLDLL, "glFrontFace" );
- qglFrustum = dllFrustum = GPA(g_hGLDLL, "glFrustum" );
- qglGenLists = dllGenLists = GPA(g_hGLDLL, "glGenLists" );
- qglGenTextures = dllGenTextures = GPA(g_hGLDLL, "glGenTextures" );
- qglGetBooleanv = dllGetBooleanv = GPA(g_hGLDLL, "glGetBooleanv" );
- qglGetClipPlane = dllGetClipPlane = GPA(g_hGLDLL, "glGetClipPlane" );
- qglGetDoublev = dllGetDoublev = GPA(g_hGLDLL, "glGetDoublev" );
- qglGetError = dllGetError = GPA(g_hGLDLL, "glGetError" );
- qglGetFloatv = dllGetFloatv = GPA(g_hGLDLL, "glGetFloatv" );
- qglGetIntegerv = dllGetIntegerv = GPA(g_hGLDLL, "glGetIntegerv" );
- qglGetLightfv = dllGetLightfv = GPA(g_hGLDLL, "glGetLightfv" );
- qglGetLightiv = dllGetLightiv = GPA(g_hGLDLL, "glGetLightiv" );
- qglGetMapdv = dllGetMapdv = GPA(g_hGLDLL, "glGetMapdv" );
- qglGetMapfv = dllGetMapfv = GPA(g_hGLDLL, "glGetMapfv" );
- qglGetMapiv = dllGetMapiv = GPA(g_hGLDLL, "glGetMapiv" );
- qglGetMaterialfv = dllGetMaterialfv = GPA(g_hGLDLL, "glGetMaterialfv" );
- qglGetMaterialiv = dllGetMaterialiv = GPA(g_hGLDLL, "glGetMaterialiv" );
- qglGetPixelMapfv = dllGetPixelMapfv = GPA(g_hGLDLL, "glGetPixelMapfv" );
- qglGetPixelMapuiv = dllGetPixelMapuiv = GPA(g_hGLDLL, "glGetPixelMapuiv" );
- qglGetPixelMapusv = dllGetPixelMapusv = GPA(g_hGLDLL, "glGetPixelMapusv" );
- qglGetPointerv = dllGetPointerv = GPA(g_hGLDLL, "glGetPointerv" );
- qglGetPolygonStipple = dllGetPolygonStipple = GPA(g_hGLDLL, "glGetPolygonStipple" );
- qglGetString = dllGetString = GPA(g_hGLDLL, "glGetString" );
- qglGetTexEnvfv = dllGetTexEnvfv = GPA(g_hGLDLL, "glGetTexEnvfv" );
- qglGetTexEnviv = dllGetTexEnviv = GPA(g_hGLDLL, "glGetTexEnviv" );
- qglGetTexGendv = dllGetTexGendv = GPA(g_hGLDLL, "glGetTexGendv" );
- qglGetTexGenfv = dllGetTexGenfv = GPA(g_hGLDLL, "glGetTexGenfv" );
- qglGetTexGeniv = dllGetTexGeniv = GPA(g_hGLDLL, "glGetTexGeniv" );
- qglGetTexImage = dllGetTexImage = GPA(g_hGLDLL, "glGetTexImage" );
- qglGetTexLevelParameterfv = dllGetTexLevelParameterfv = GPA(g_hGLDLL, "glGetLevelParameterfv" );
- qglGetTexLevelParameteriv = dllGetTexLevelParameteriv = GPA(g_hGLDLL, "glGetLevelParameteriv" );
- qglGetTexParameterfv = dllGetTexParameterfv = GPA(g_hGLDLL, "glGetTexParameterfv" );
- qglGetTexParameteriv = dllGetTexParameteriv = GPA(g_hGLDLL, "glGetTexParameteriv" );
- qglHint = dllHint = GPA(g_hGLDLL, "glHint" );
- qglIndexMask = dllIndexMask = GPA(g_hGLDLL, "glIndexMask" );
- qglIndexPointer = dllIndexPointer = GPA(g_hGLDLL, "glIndexPointer" );
- qglIndexd = dllIndexd = GPA(g_hGLDLL, "glIndexd" );
- qglIndexdv = dllIndexdv = GPA(g_hGLDLL, "glIndexdv" );
- qglIndexf = dllIndexf = GPA(g_hGLDLL, "glIndexf" );
- qglIndexfv = dllIndexfv = GPA(g_hGLDLL, "glIndexfv" );
- qglIndexi = dllIndexi = GPA(g_hGLDLL, "glIndexi" );
- qglIndexiv = dllIndexiv = GPA(g_hGLDLL, "glIndexiv" );
- qglIndexs = dllIndexs = GPA(g_hGLDLL, "glIndexs" );
- qglIndexsv = dllIndexsv = GPA(g_hGLDLL, "glIndexsv" );
- qglIndexub = dllIndexub = GPA(g_hGLDLL, "glIndexub" );
- qglIndexubv = dllIndexubv = GPA(g_hGLDLL, "glIndexubv" );
- qglInitNames = dllInitNames = GPA(g_hGLDLL, "glInitNames" );
- qglInterleavedArrays = dllInterleavedArrays = GPA(g_hGLDLL, "glInterleavedArrays" );
- qglIsEnabled = dllIsEnabled = GPA(g_hGLDLL, "glIsEnabled" );
- qglIsList = dllIsList = GPA(g_hGLDLL, "glIsList" );
- qglIsTexture = dllIsTexture = GPA(g_hGLDLL, "glIsTexture" );
- qglLightModelf = dllLightModelf = GPA(g_hGLDLL, "glLightModelf" );
- qglLightModelfv = dllLightModelfv = GPA(g_hGLDLL, "glLightModelfv" );
- qglLightModeli = dllLightModeli = GPA(g_hGLDLL, "glLightModeli" );
- qglLightModeliv = dllLightModeliv = GPA(g_hGLDLL, "glLightModeliv" );
- qglLightf = dllLightf = GPA(g_hGLDLL, "glLightf" );
- qglLightfv = dllLightfv = GPA(g_hGLDLL, "glLightfv" );
- qglLighti = dllLighti = GPA(g_hGLDLL, "glLighti" );
- qglLightiv = dllLightiv = GPA(g_hGLDLL, "glLightiv" );
- qglLineStipple = dllLineStipple = GPA(g_hGLDLL, "glLineStipple" );
- qglLineWidth = dllLineWidth = GPA(g_hGLDLL, "glLineWidth" );
- qglListBase = dllListBase = GPA(g_hGLDLL, "glListBase" );
- qglLoadIdentity = dllLoadIdentity = GPA(g_hGLDLL, "glLoadIdentity" );
- qglLoadMatrixd = dllLoadMatrixd = GPA(g_hGLDLL, "glLoadMatrixd" );
- qglLoadMatrixf = dllLoadMatrixf = GPA(g_hGLDLL, "glLoadMatrixf" );
- qglLoadName = dllLoadName = GPA(g_hGLDLL, "glLoadName" );
- qglLogicOp = dllLogicOp = GPA(g_hGLDLL, "glLogicOp" );
- qglMap1d = dllMap1d = GPA(g_hGLDLL, "glMap1d" );
- qglMap1f = dllMap1f = GPA(g_hGLDLL, "glMap1f" );
- qglMap2d = dllMap2d = GPA(g_hGLDLL, "glMap2d" );
- qglMap2f = dllMap2f = GPA(g_hGLDLL, "glMap2f" );
- qglMapGrid1d = dllMapGrid1d = GPA(g_hGLDLL, "glMapGrid1d" );
- qglMapGrid1f = dllMapGrid1f = GPA(g_hGLDLL, "glMapGrid1f" );
- qglMapGrid2d = dllMapGrid2d = GPA(g_hGLDLL, "glMapGrid2d" );
- qglMapGrid2f = dllMapGrid2f = GPA(g_hGLDLL, "glMapGrid2f" );
- qglMaterialf = dllMaterialf = GPA(g_hGLDLL, "glMaterialf" );
- qglMaterialfv = dllMaterialfv = GPA(g_hGLDLL, "glMaterialfv" );
- qglMateriali = dllMateriali = GPA(g_hGLDLL, "glMateriali" );
- qglMaterialiv = dllMaterialiv = GPA(g_hGLDLL, "glMaterialiv" );
- qglMatrixMode = dllMatrixMode = GPA(g_hGLDLL, "glMatrixMode" );
- qglMultMatrixd = dllMultMatrixd = GPA(g_hGLDLL, "glMultMatrixd" );
- qglMultMatrixf = dllMultMatrixf = GPA(g_hGLDLL, "glMultMatrixf" );
- qglNewList = dllNewList = GPA(g_hGLDLL, "glNewList" );
- qglNormal3b = dllNormal3b = GPA(g_hGLDLL, "glNormal3b" );
- qglNormal3bv = dllNormal3bv = GPA(g_hGLDLL, "glNormal3bv" );
- qglNormal3d = dllNormal3d = GPA(g_hGLDLL, "glNormal3d" );
- qglNormal3dv = dllNormal3dv = GPA(g_hGLDLL, "glNormal3dv" );
- qglNormal3f = dllNormal3f = GPA(g_hGLDLL, "glNormal3f" );
- qglNormal3fv = dllNormal3fv = GPA(g_hGLDLL, "glNormal3fv" );
- qglNormal3i = dllNormal3i = GPA(g_hGLDLL, "glNormal3i" );
- qglNormal3iv = dllNormal3iv = GPA(g_hGLDLL, "glNormal3iv" );
- qglNormal3s = dllNormal3s = GPA(g_hGLDLL, "glNormal3s" );
- qglNormal3sv = dllNormal3sv = GPA(g_hGLDLL, "glNormal3sv" );
- qglNormalPointer = dllNormalPointer = GPA(g_hGLDLL, "glNormalPointer" );
- qglOrtho = dllOrtho = GPA(g_hGLDLL, "glOrtho" );
- qglPassThrough = dllPassThrough = GPA(g_hGLDLL, "glPassThrough" );
- qglPixelMapfv = dllPixelMapfv = GPA(g_hGLDLL, "glPixelMapfv" );
- qglPixelMapuiv = dllPixelMapuiv = GPA(g_hGLDLL, "glPixelMapuiv" );
- qglPixelMapusv = dllPixelMapusv = GPA(g_hGLDLL, "glPixelMapusv" );
- qglPixelStoref = dllPixelStoref = GPA(g_hGLDLL, "glPixelStoref" );
- qglPixelStorei = dllPixelStorei = GPA(g_hGLDLL, "glPixelStorei" );
- qglPixelTransferf = dllPixelTransferf = GPA(g_hGLDLL, "glPixelTransferf" );
- qglPixelTransferi = dllPixelTransferi = GPA(g_hGLDLL, "glPixelTransferi" );
- qglPixelZoom = dllPixelZoom = GPA(g_hGLDLL, "glPixelZoom" );
- qglPointSize = dllPointSize = GPA(g_hGLDLL, "glPointSize" );
- qglPolygonMode = dllPolygonMode = GPA(g_hGLDLL, "glPolygonMode" );
- qglPolygonOffset = dllPolygonOffset = GPA(g_hGLDLL, "glPolygonOffset" );
- qglPolygonStipple = dllPolygonStipple = GPA(g_hGLDLL, "glPolygonStipple" );
- qglPopAttrib = dllPopAttrib = GPA(g_hGLDLL, "glPopAttrib" );
- qglPopClientAttrib = dllPopClientAttrib = GPA(g_hGLDLL, "glPopClientAttrib" );
- qglPopMatrix = dllPopMatrix = GPA(g_hGLDLL, "glPopMatrix" );
- qglPopName = dllPopName = GPA(g_hGLDLL, "glPopName" );
- qglPrioritizeTextures = dllPrioritizeTextures = GPA(g_hGLDLL, "glPrioritizeTextures" );
- qglPushAttrib = dllPushAttrib = GPA(g_hGLDLL, "glPushAttrib" );
- qglPushClientAttrib = dllPushClientAttrib = GPA(g_hGLDLL, "glPushClientAttrib" );
- qglPushMatrix = dllPushMatrix = GPA(g_hGLDLL, "glPushMatrix" );
- qglPushName = dllPushName = GPA(g_hGLDLL, "glPushName" );
- qglRasterPos2d = dllRasterPos2d = GPA(g_hGLDLL, "glRasterPos2d" );
- qglRasterPos2dv = dllRasterPos2dv = GPA(g_hGLDLL, "glRasterPos2dv" );
- qglRasterPos2f = dllRasterPos2f = GPA(g_hGLDLL, "glRasterPos2f" );
- qglRasterPos2fv = dllRasterPos2fv = GPA(g_hGLDLL, "glRasterPos2fv" );
- qglRasterPos2i = dllRasterPos2i = GPA(g_hGLDLL, "glRasterPos2i" );
- qglRasterPos2iv = dllRasterPos2iv = GPA(g_hGLDLL, "glRasterPos2iv" );
- qglRasterPos2s = dllRasterPos2s = GPA(g_hGLDLL, "glRasterPos2s" );
- qglRasterPos2sv = dllRasterPos2sv = GPA(g_hGLDLL, "glRasterPos2sv" );
- qglRasterPos3d = dllRasterPos3d = GPA(g_hGLDLL, "glRasterPos3d" );
- qglRasterPos3dv = dllRasterPos3dv = GPA(g_hGLDLL, "glRasterPos3dv" );
- qglRasterPos3f = dllRasterPos3f = GPA(g_hGLDLL, "glRasterPos3f" );
- qglRasterPos3fv = dllRasterPos3fv = GPA(g_hGLDLL, "glRasterPos3fv" );
- qglRasterPos3i = dllRasterPos3i = GPA(g_hGLDLL, "glRasterPos3i" );
- qglRasterPos3iv = dllRasterPos3iv = GPA(g_hGLDLL, "glRasterPos3iv" );
- qglRasterPos3s = dllRasterPos3s = GPA(g_hGLDLL, "glRasterPos3s" );
- qglRasterPos3sv = dllRasterPos3sv = GPA(g_hGLDLL, "glRasterPos3sv" );
- qglRasterPos4d = dllRasterPos4d = GPA(g_hGLDLL, "glRasterPos4d" );
- qglRasterPos4dv = dllRasterPos4dv = GPA(g_hGLDLL, "glRasterPos4dv" );
- qglRasterPos4f = dllRasterPos4f = GPA(g_hGLDLL, "glRasterPos4f" );
- qglRasterPos4fv = dllRasterPos4fv = GPA(g_hGLDLL, "glRasterPos4fv" );
- qglRasterPos4i = dllRasterPos4i = GPA(g_hGLDLL, "glRasterPos4i" );
- qglRasterPos4iv = dllRasterPos4iv = GPA(g_hGLDLL, "glRasterPos4iv" );
- qglRasterPos4s = dllRasterPos4s = GPA(g_hGLDLL, "glRasterPos4s" );
- qglRasterPos4sv = dllRasterPos4sv = GPA(g_hGLDLL, "glRasterPos4sv" );
- qglReadBuffer = dllReadBuffer = GPA(g_hGLDLL, "glReadBuffer" );
- qglReadPixels = dllReadPixels = GPA(g_hGLDLL, "glReadPixels" );
- qglRectd = dllRectd = GPA(g_hGLDLL, "glRectd" );
- qglRectdv = dllRectdv = GPA(g_hGLDLL, "glRectdv" );
- qglRectf = dllRectf = GPA(g_hGLDLL, "glRectf" );
- qglRectfv = dllRectfv = GPA(g_hGLDLL, "glRectfv" );
- qglRecti = dllRecti = GPA(g_hGLDLL, "glRecti" );
- qglRectiv = dllRectiv = GPA(g_hGLDLL, "glRectiv" );
- qglRects = dllRects = GPA(g_hGLDLL, "glRects" );
- qglRectsv = dllRectsv = GPA(g_hGLDLL, "glRectsv" );
- qglRenderMode = dllRenderMode = GPA(g_hGLDLL, "glRenderMode" );
- qglRotated = dllRotated = GPA(g_hGLDLL, "glRotated" );
- qglRotatef = dllRotatef = GPA(g_hGLDLL, "glRotatef" );
- qglScaled = dllScaled = GPA(g_hGLDLL, "glScaled" );
- qglScalef = dllScalef = GPA(g_hGLDLL, "glScalef" );
- qglScissor = dllScissor = GPA(g_hGLDLL, "glScissor" );
- qglSelectBuffer = dllSelectBuffer = GPA(g_hGLDLL, "glSelectBuffer" );
- qglShadeModel = dllShadeModel = GPA(g_hGLDLL, "glShadeModel" );
- qglStencilFunc = dllStencilFunc = GPA(g_hGLDLL, "glStencilFunc" );
- qglStencilMask = dllStencilMask = GPA(g_hGLDLL, "glStencilMask" );
- qglStencilOp = dllStencilOp = GPA(g_hGLDLL, "glStencilOp" );
- qglTexCoord1d = dllTexCoord1d = GPA(g_hGLDLL, "glTexCoord1d" );
- qglTexCoord1dv = dllTexCoord1dv = GPA(g_hGLDLL, "glTexCoord1dv" );
- qglTexCoord1f = dllTexCoord1f = GPA(g_hGLDLL, "glTexCoord1f" );
- qglTexCoord1fv = dllTexCoord1fv = GPA(g_hGLDLL, "glTexCoord1fv" );
- qglTexCoord1i = dllTexCoord1i = GPA(g_hGLDLL, "glTexCoord1i" );
- qglTexCoord1iv = dllTexCoord1iv = GPA(g_hGLDLL, "glTexCoord1iv" );
- qglTexCoord1s = dllTexCoord1s = GPA(g_hGLDLL, "glTexCoord1s" );
- qglTexCoord1sv = dllTexCoord1sv = GPA(g_hGLDLL, "glTexCoord1sv" );
- qglTexCoord2d = dllTexCoord2d = GPA(g_hGLDLL, "glTexCoord2d" );
- qglTexCoord2dv = dllTexCoord2dv = GPA(g_hGLDLL, "glTexCoord2dv" );
- qglTexCoord2f = dllTexCoord2f = GPA(g_hGLDLL, "glTexCoord2f" );
- qglTexCoord2fv = dllTexCoord2fv = GPA(g_hGLDLL, "glTexCoord2fv" );
- qglTexCoord2i = dllTexCoord2i = GPA(g_hGLDLL, "glTexCoord2i" );
- qglTexCoord2iv = dllTexCoord2iv = GPA(g_hGLDLL, "glTexCoord2iv" );
- qglTexCoord2s = dllTexCoord2s = GPA(g_hGLDLL, "glTexCoord2s" );
- qglTexCoord2sv = dllTexCoord2sv = GPA(g_hGLDLL, "glTexCoord2sv" );
- qglTexCoord3d = dllTexCoord3d = GPA(g_hGLDLL, "glTexCoord3d" );
- qglTexCoord3dv = dllTexCoord3dv = GPA(g_hGLDLL, "glTexCoord3dv" );
- qglTexCoord3f = dllTexCoord3f = GPA(g_hGLDLL, "glTexCoord3f" );
- qglTexCoord3fv = dllTexCoord3fv = GPA(g_hGLDLL, "glTexCoord3fv" );
- qglTexCoord3i = dllTexCoord3i = GPA(g_hGLDLL, "glTexCoord3i" );
- qglTexCoord3iv = dllTexCoord3iv = GPA(g_hGLDLL, "glTexCoord3iv" );
- qglTexCoord3s = dllTexCoord3s = GPA(g_hGLDLL, "glTexCoord3s" );
- qglTexCoord3sv = dllTexCoord3sv = GPA(g_hGLDLL, "glTexCoord3sv" );
- qglTexCoord4d = dllTexCoord4d = GPA(g_hGLDLL, "glTexCoord4d" );
- qglTexCoord4dv = dllTexCoord4dv = GPA(g_hGLDLL, "glTexCoord4dv" );
- qglTexCoord4f = dllTexCoord4f = GPA(g_hGLDLL, "glTexCoord4f" );
- qglTexCoord4fv = dllTexCoord4fv = GPA(g_hGLDLL, "glTexCoord4fv" );
- qglTexCoord4i = dllTexCoord4i = GPA(g_hGLDLL, "glTexCoord4i" );
- qglTexCoord4iv = dllTexCoord4iv = GPA(g_hGLDLL, "glTexCoord4iv" );
- qglTexCoord4s = dllTexCoord4s = GPA(g_hGLDLL, "glTexCoord4s" );
- qglTexCoord4sv = dllTexCoord4sv = GPA(g_hGLDLL, "glTexCoord4sv" );
- qglTexCoordPointer = dllTexCoordPointer = GPA(g_hGLDLL, "glTexCoordPointer" );
- qglTexEnvf = dllTexEnvf = GPA(g_hGLDLL, "glTexEnvf" );
- qglTexEnvfv = dllTexEnvfv = GPA(g_hGLDLL, "glTexEnvfv" );
- qglTexEnvi = dllTexEnvi = GPA(g_hGLDLL, "glTexEnvi" );
- qglTexEnviv = dllTexEnviv = GPA(g_hGLDLL, "glTexEnviv" );
- qglTexGend = dllTexGend = GPA(g_hGLDLL, "glTexGend" );
- qglTexGendv = dllTexGendv = GPA(g_hGLDLL, "glTexGendv" );
- qglTexGenf = dllTexGenf = GPA(g_hGLDLL, "glTexGenf" );
- qglTexGenfv = dllTexGenfv = GPA(g_hGLDLL, "glTexGenfv" );
- qglTexGeni = dllTexGeni = GPA(g_hGLDLL, "glTexGeni" );
- qglTexGeniv = dllTexGeniv = GPA(g_hGLDLL, "glTexGeniv" );
- qglTexImage1D = dllTexImage1D = GPA(g_hGLDLL, "glTexImage1D" );
- qglTexImage2D = dllTexImage2D = GPA(g_hGLDLL, "glTexImage2D" );
- qglTexParameterf = dllTexParameterf = GPA(g_hGLDLL, "glTexParameterf" );
- qglTexParameterfv = dllTexParameterfv = GPA(g_hGLDLL, "glTexParameterfv" );
- qglTexParameteri = dllTexParameteri = GPA(g_hGLDLL, "glTexParameteri" );
- qglTexParameteriv = dllTexParameteriv = GPA(g_hGLDLL, "glTexParameteriv" );
- qglTexSubImage1D = dllTexSubImage1D = GPA(g_hGLDLL, "glTexSubImage1D" );
- qglTexSubImage2D = dllTexSubImage2D = GPA(g_hGLDLL, "glTexSubImage2D" );
- qglTranslated = dllTranslated = GPA(g_hGLDLL, "glTranslated" );
- qglTranslatef = dllTranslatef = GPA(g_hGLDLL, "glTranslatef" );
- qglVertex2d = dllVertex2d = GPA(g_hGLDLL, "glVertex2d" );
- qglVertex2dv = dllVertex2dv = GPA(g_hGLDLL, "glVertex2dv" );
- qglVertex2f = dllVertex2f = GPA(g_hGLDLL, "glVertex2f" );
- qglVertex2fv = dllVertex2fv = GPA(g_hGLDLL, "glVertex2fv" );
- qglVertex2i = dllVertex2i = GPA(g_hGLDLL, "glVertex2i" );
- qglVertex2iv = dllVertex2iv = GPA(g_hGLDLL, "glVertex2iv" );
- qglVertex2s = dllVertex2s = GPA(g_hGLDLL, "glVertex2s" );
- qglVertex2sv = dllVertex2sv = GPA(g_hGLDLL, "glVertex2sv" );
- qglVertex3d = dllVertex3d = GPA(g_hGLDLL, "glVertex3d" );
- qglVertex3dv = dllVertex3dv = GPA(g_hGLDLL, "glVertex3dv" );
- qglVertex3f = dllVertex3f = GPA(g_hGLDLL, "glVertex3f" );
- qglVertex3fv = dllVertex3fv = GPA(g_hGLDLL, "glVertex3fv" );
- qglVertex3i = dllVertex3i = GPA(g_hGLDLL, "glVertex3i" );
- qglVertex3iv = dllVertex3iv = GPA(g_hGLDLL, "glVertex3iv" );
- qglVertex3s = dllVertex3s = GPA(g_hGLDLL, "glVertex3s" );
- qglVertex3sv = dllVertex3sv = GPA(g_hGLDLL, "glVertex3sv" );
- qglVertex4d = dllVertex4d = GPA(g_hGLDLL, "glVertex4d" );
- qglVertex4dv = dllVertex4dv = GPA(g_hGLDLL, "glVertex4dv" );
- qglVertex4f = dllVertex4f = GPA(g_hGLDLL, "glVertex4f" );
- qglVertex4fv = dllVertex4fv = GPA(g_hGLDLL, "glVertex4fv" );
- qglVertex4i = dllVertex4i = GPA(g_hGLDLL, "glVertex4i" );
- qglVertex4iv = dllVertex4iv = GPA(g_hGLDLL, "glVertex4iv" );
- qglVertex4s = dllVertex4s = GPA(g_hGLDLL, "glVertex4s" );
- qglVertex4sv = dllVertex4sv = GPA(g_hGLDLL, "glVertex4sv" );
- qglVertexPointer = dllVertexPointer = GPA(g_hGLDLL, "glVertexPointer" );
- qglViewport = dllViewport = GPA(g_hGLDLL, "glViewport" );
- qwglCopyContext = GPA(g_hGLDLL, "wglCopyContext" );
- qwglCreateContext = GPA(g_hGLDLL, "wglCreateContext" );
- qwglCreateLayerContext = GPA(g_hGLDLL, "wglCreateLayerContext" );
- qwglDeleteContext = GPA(g_hGLDLL, "wglDeleteContext" );
- qwglDescribeLayerPlane = GPA(g_hGLDLL, "wglDescribeLayerPlane" );
- qwglGetCurrentContext = GPA(g_hGLDLL, "wglGetCurrentContext" );
- qwglGetCurrentDC = GPA(g_hGLDLL, "wglGetCurrentDC" );
- qwglGetLayerPaletteEntries = GPA(g_hGLDLL, "wglGetLayerPaletteEntries" );
- qwglGetProcAddress = GPA(g_hGLDLL, "wglGetProcAddress" );
- qwglMakeCurrent = GPA(g_hGLDLL, "wglMakeCurrent" );
- qwglRealizeLayerPalette = GPA(g_hGLDLL, "wglRealizeLayerPalette" );
- qwglSetLayerPaletteEntries = GPA(g_hGLDLL, "wglSetLayerPaletteEntries" );
- qwglShareLists = GPA(g_hGLDLL, "wglShareLists" );
- qwglSwapLayerBuffers = GPA(g_hGLDLL, "wglSwapLayerBuffers" );
- qwglUseFontBitmaps = GPA(g_hGLDLL, "wglUseFontBitmapsA" );
- qwglUseFontOutlines = GPA(g_hGLDLL, "wglUseFontOutlinesA" );
- qwglChoosePixelFormat = GPA(g_hGLDLL, "wglChoosePixelFormat" );
- qwglDescribePixelFormat = GPA(g_hGLDLL, "wglDescribePixelFormat" );
- qwglGetPixelFormat = GPA(g_hGLDLL, "wglGetPixelFormat" );
- qwglSetPixelFormat = GPA(g_hGLDLL, "wglSetPixelFormat" );
- qwglSwapBuffers = GPA(g_hGLDLL, "wglSwapBuffers" );
- qwglSwapIntervalEXT = 0;
- qglPointParameterfEXT = 0;
- qglPointParameterfvEXT = 0;
- qglColorTableEXT = 0;
- qglSelectTextureSGIS = 0;
- qglMTexCoord2fSGIS = 0;
- return true;
- }
- #pragma warning (default : 4113 4133 4047 )
|