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 /src/mesa/main/teximage.h | |
parent | 0bc933a4603da8d8224acb3b5cb8c99db5ea2e88 (diff) |
change glTexImage3D() internalFormat to GLenum to match other OpenGLs
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index a19f806118c..b5664e4efaa 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -1,4 +1,4 @@ -/* $Id: teximage.h,v 1.17 2001/03/12 00:48:38 gareth Exp $ */ +/* $Id: teximage.h,v 1.18 2001/03/26 20:02:39 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -74,7 +74,7 @@ _mesa_TexImage2D( GLenum target, GLint level, GLint internalformat, extern void -_mesa_TexImage3D( GLenum target, GLint level, GLint internalformat, +_mesa_TexImage3D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ); |