From 0822c1050ea4e91957fc7109358c3bd7daca3480 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 9 Nov 1999 06:16:59 +0000 Subject: replace GLint with GLsizei in a gluScaleImage, gluBuild1/2DMipmaps() --- src/glu/mesa/mipmap.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/glu') diff --git a/src/glu/mesa/mipmap.c b/src/glu/mesa/mipmap.c index 63246f3958..9f4ffcfea8 100644 --- a/src/glu/mesa/mipmap.c +++ b/src/glu/mesa/mipmap.c @@ -1,4 +1,4 @@ -/* $Id: mipmap.c,v 1.2 1999/09/14 00:30:28 brianp Exp $ */ +/* $Id: mipmap.c,v 1.3 1999/11/09 06:16:59 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -23,6 +23,9 @@ /* * $Log: mipmap.c,v $ + * Revision 1.3 1999/11/09 06:16:59 brianp + * replace GLint with GLsizei in a gluScaleImage, gluBuild1/2DMipmaps() + * * Revision 1.2 1999/09/14 00:30:28 brianp * fixed pixel packing/unpacking code in gluBuild2DMipmaps() * @@ -105,9 +108,9 @@ void dummy(GLuint j, GLuint k){ 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 ) { GLint components, i, j, k; @@ -633,7 +636,7 @@ static GLint bytes_per_pixel( GLenum format, GLenum type ) * WARNING: This function isn't finished and has never been tested!!!! */ GLint GLAPIENTRY gluBuild1DMipmaps( GLenum target, GLint components, - GLint width, GLenum format, + GLsizei width, GLenum format, GLenum type, const void *data ) { GLubyte *texture; @@ -711,7 +714,7 @@ GLint GLAPIENTRY gluBuild1DMipmaps( GLenum target, GLint components, GLint GLAPIENTRY gluBuild2DMipmaps( GLenum target, GLint components, - GLint width, GLint height, GLenum format, + GLsizei width, GLsizei height, GLenum format, GLenum type, const void *data ) { GLint w, h, maxsize; -- cgit v1.2.3