diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 1999-11-09 06:16:59 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 1999-11-09 06:16:59 +0000 |
commit | 0822c1050ea4e91957fc7109358c3bd7daca3480 (patch) | |
tree | b577da9e2cc04946e856906dbb8e0aad5083a881 /include/GL | |
parent | c00c0b323fd46385faaa75395553247ed089eaba (diff) |
replace GLint with GLsizei in a gluScaleImage, gluBuild1/2DMipmaps()
Diffstat (limited to 'include/GL')
-rw-r--r-- | include/GL/glu.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/GL/glu.h b/include/GL/glu.h index 6cf56d789b..394883c548 100644 --- a/include/GL/glu.h +++ b/include/GL/glu.h @@ -1,4 +1,4 @@ -/* $Id: glu.h,v 1.13 1999/10/27 09:43:48 brianp Exp $ */ +/* $Id: glu.h,v 1.14 1999/11/09 06:17:08 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -290,17 +290,17 @@ GLUAPI const GLubyte* GLAPIENTRY gluErrorString( GLenum errorCode ); */ GLUAPI GLint GLAPIENTRY gluScaleImage( GLenum format, - GLint widthin, GLint heightin, + GLsizei widthin, GLsizei heightin, GLenum typein, const void *datain, - GLint widthout, GLint heightout, + GLsizei widthout, GLsizei heightout, GLenum typeout, void *dataout ); GLUAPI GLint GLAPIENTRY gluBuild1DMipmaps( GLenum target, GLint components, - GLint width, GLenum format, + GLsizei width, GLenum format, GLenum type, const void *data ); GLUAPI GLint GLAPIENTRY gluBuild2DMipmaps( GLenum target, GLint components, - GLint width, GLint height, + GLsizei width, GLsizei height, GLenum format, GLenum type, const void *data ); |