diff options
Diffstat (limited to 'src/mesa/swrast/s_zoom.h')
-rw-r--r-- | src/mesa/swrast/s_zoom.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_zoom.h b/src/mesa/swrast/s_zoom.h index 170133c3df..940970d7ab 100644 --- a/src/mesa/swrast/s_zoom.h +++ b/src/mesa/swrast/s_zoom.h @@ -1,4 +1,4 @@ -/* $Id: s_zoom.h,v 1.4 2001/03/12 00:48:42 gareth Exp $ */ +/* $Id: s_zoom.h,v 1.5 2001/05/03 22:13:32 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -35,21 +35,21 @@ extern void _mesa_write_zoomed_rgba_span( GLcontext *ctx, GLuint n, GLint x, GLint y, const GLdepth z[], - const GLfixed *fog, + const GLfloat *fog, CONST GLchan rgba[][4], GLint y0 ); extern void _mesa_write_zoomed_rgb_span( GLcontext *ctx, GLuint n, GLint x, GLint y, const GLdepth z[], - const GLfixed *fog, + const GLfloat *fog, CONST GLchan rgb[][3], GLint y0 ); extern void _mesa_write_zoomed_index_span( GLcontext *ctx, GLuint n, GLint x, GLint y, const GLdepth z[], - const GLfixed *fog, + const GLfloat *fog, const GLuint indexes[], GLint y0 ); |