summaryrefslogtreecommitdiff
path: root/src/mesa/main/texutil.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-05-02 21:02:38 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-05-02 21:02:38 +0000
commit104c9fde4edc43c28dcc577d542683c8bbca6783 (patch)
treef88839a7ba6fcf3adefd2f5490ff5ed85872080e /src/mesa/main/texutil.h
parent70bb9072864801a8110c4c63c6fb8fe8469e7fe6 (diff)
changed parameters to _mesa_rescale_teximage2d()
Diffstat (limited to 'src/mesa/main/texutil.h')
-rw-r--r--src/mesa/main/texutil.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/texutil.h b/src/mesa/main/texutil.h
index d9293ef8fe..f92ecd9f98 100644
--- a/src/mesa/main/texutil.h
+++ b/src/mesa/main/texutil.h
@@ -1,4 +1,4 @@
-/* $Id: texutil.h,v 1.9 2001/03/18 08:53:50 gareth Exp $ */
+/* $Id: texutil.h,v 1.10 2001/05/02 21:02:38 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -64,9 +64,10 @@ _mesa_convert_texsubimage3d( GLint mesaFormat,
* all aspect ratios). FIXME: Make this a subimage update as well...
*/
extern void
-_mesa_rescale_teximage2d( const struct gl_texture_format *texFormat,
+_mesa_rescale_teximage2d( GLuint bytesPerPixel, GLuint dstRowStride,
GLint srcWidth, GLint srcHeight,
GLint dstWidth, GLint dstHeight,
const GLvoid *srcImage, GLvoid *dstImage );
+
#endif