diff options
Diffstat (limited to 'code/win32')
-rw-r--r-- | code/win32/win_qgl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/code/win32/win_qgl.c b/code/win32/win_qgl.c index 9a4354f..68049c4 100644 --- a/code/win32/win_qgl.c +++ b/code/win32/win_qgl.c @@ -405,6 +405,12 @@ 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); +void ( APIENTRY * qglMultiTexCoord2fARB )( GLenum texture, GLfloat s, GLfloat t ); +void ( APIENTRY * qglActiveTextureARB )( GLenum texture ); +void ( APIENTRY * qglClientActiveTextureARB )( GLenum texture ); + +void ( APIENTRY * qglLockArraysEXT)( GLint, GLint); +void ( APIENTRY * qglUnlockArraysEXT) ( void ); static void ( APIENTRY * dllAccum )(GLenum op, GLfloat value); |