diff options
Diffstat (limited to 'src/mesa/swrast/s_fog.h')
-rw-r--r-- | src/mesa/swrast/s_fog.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_fog.h b/src/mesa/swrast/s_fog.h index 8db6495d01e..10f1b923b34 100644 --- a/src/mesa/swrast/s_fog.h +++ b/src/mesa/swrast/s_fog.h @@ -1,4 +1,4 @@ -/* $Id: s_fog.h,v 1.6 2001/12/17 04:54:35 brianp Exp $ */ +/* $Id: s_fog.h,v 1.7 2002/01/21 18:12:34 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -44,11 +44,18 @@ _old_fog_rgba_pixels( const GLcontext *ctx, extern void _mesa_fog_rgba_pixels( const GLcontext *ctx, struct sw_span *span, GLchan rgba[][4]); +extern void +_mesa_fog_rgba_pixels_with_array( const GLcontext *ctx, struct sw_span *span, + const GLfloat fog[], GLchan rgba[][4] ); + extern void _mesa_fog_ci_pixels( const GLcontext *ctx, struct sw_span *span, GLuint indx[]); extern void +_mesa_fog_ci_pixels_with_array( const GLcontext *ctx, struct sw_span *span, + const GLfloat fog[], GLuint index[] ); +extern void _old_fog_ci_pixels( const GLcontext *ctx, GLuint n, const GLfloat fog[], GLuint indx[] ); |