mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-20 19:02:34 +00:00
glFog is unused
This commit is contained in:
parent
35983c7ae5
commit
93fe6a50ac
1 changed files with 0 additions and 13 deletions
|
@ -273,10 +273,6 @@ static void GL_MSG_Error(const char *format, ...)
|
|||
#define pglTexImage2D glTexImage2D
|
||||
#define pglTexSubImage2D glTexSubImage2D
|
||||
|
||||
/* Fog */
|
||||
#define pglFogf glFogf
|
||||
#define pglFogfv glFogfv
|
||||
|
||||
/* 1.1 functions */
|
||||
/* texture objects */ //GL_EXT_texture_object
|
||||
#define pglGenTextures glGenTextures
|
||||
|
@ -389,12 +385,6 @@ static PFNglTexImage2D pglTexImage2D;
|
|||
typedef void (APIENTRY * PFNglTexSubImage2D) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
|
||||
static PFNglTexSubImage2D pglTexSubImage2D;
|
||||
|
||||
/* Fog */
|
||||
typedef void (APIENTRY * PFNglFogf) (GLenum pname, GLfloat param);
|
||||
static PFNglFogf pglFogf;
|
||||
typedef void (APIENTRY * PFNglFogfv) (GLenum pname, const GLfloat *params);
|
||||
static PFNglFogfv pglFogfv;
|
||||
|
||||
/* 1.1 functions */
|
||||
/* texture objects */ //GL_EXT_texture_object
|
||||
typedef void (APIENTRY * PFNglGenTextures) (GLsizei n, const GLuint *textures);
|
||||
|
@ -527,9 +517,6 @@ boolean SetupGLfunc(void)
|
|||
GETOPENGLFUNC(pglTexImage2D, glTexImage2D)
|
||||
GETOPENGLFUNC(pglTexSubImage2D , glTexSubImage2D)
|
||||
|
||||
GETOPENGLFUNC(pglFogf, glFogf)
|
||||
GETOPENGLFUNC(pglFogfv, glFogfv)
|
||||
|
||||
GETOPENGLFUNC(pglGenTextures, glGenTextures)
|
||||
GETOPENGLFUNC(pglDeleteTextures, glDeleteTextures)
|
||||
GETOPENGLFUNC(pglBindTexture, glBindTexture)
|
||||
|
|
Loading…
Reference in a new issue