glPolygonOffset added.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@632 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
3995f947d3
commit
0202601875
1 changed files with 2 additions and 0 deletions
|
@ -41,6 +41,7 @@ void (APIENTRY *qglMatrixMode) (GLenum mode);
|
||||||
void (APIENTRY *qglMultMatrixf) (const GLfloat *m);
|
void (APIENTRY *qglMultMatrixf) (const GLfloat *m);
|
||||||
void (APIENTRY *qglOrtho) (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
|
void (APIENTRY *qglOrtho) (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
|
||||||
void (APIENTRY *qglPolygonMode) (GLenum face, GLenum mode);
|
void (APIENTRY *qglPolygonMode) (GLenum face, GLenum mode);
|
||||||
|
void (APIENTRY *qglPolygonOffset) (GLfloat factor, GLfloat units);
|
||||||
void (APIENTRY *qglPopMatrix) (void);
|
void (APIENTRY *qglPopMatrix) (void);
|
||||||
void (APIENTRY *qglPushMatrix) (void);
|
void (APIENTRY *qglPushMatrix) (void);
|
||||||
void (APIENTRY *qglReadBuffer) (GLenum mode);
|
void (APIENTRY *qglReadBuffer) (GLenum mode);
|
||||||
|
@ -388,6 +389,7 @@ void GL_Init(void *(*getglfunction) (char *name))
|
||||||
qglPopAttrib = (void *)getglcore("glPopAttrib");
|
qglPopAttrib = (void *)getglcore("glPopAttrib");
|
||||||
qglScissor = (void *)getglcore("glScissor");
|
qglScissor = (void *)getglcore("glScissor");
|
||||||
|
|
||||||
|
qglPolygonOffset = (void *)getglext("glPolygonOffset");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue