diff options
author | Brian Paul <[email protected]> | 2001-03-26 20:02:38 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-26 20:02:38 +0000 |
commit | 5535aca5dffdfb8ad9a1970a062e6109227aa17f (patch) | |
tree | 723d6c18d6f2c1637a3ac503cf11f43c55683026 /include/GL | |
parent | 0bc933a4603da8d8224acb3b5cb8c99db5ea2e88 (diff) |
change glTexImage3D() internalFormat to GLenum to match other OpenGLs
Diffstat (limited to 'include/GL')
-rw-r--r-- | include/GL/gl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 5d95b912a45..888d13d403c 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,4 +1,4 @@ -/* $Id: gl.h,v 1.53 2001/03/22 04:56:50 brianp Exp $ */ +/* $Id: gl.h,v 1.54 2001/03/26 20:02:38 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1591,7 +1591,7 @@ GLAPI void GLAPIENTRY glDrawRangeElements( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); GLAPI void GLAPIENTRY glTexImage3D( GLenum target, GLint level, - GLint internalFormat, + GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, |