diff options
author | Brian Paul <[email protected]> | 2002-01-21 18:12:34 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-01-21 18:12:34 +0000 |
commit | 2ef866d1fc0a5cc5ef8543d65744dfd4da4dbbaf (patch) | |
tree | 835adeb2048e8c54afcea9fb7f1d29dc7f1c05ed /src/mesa/swrast/s_fog.h | |
parent | 674012f083dde5a58742a74a6b4adf266ea17ed7 (diff) |
Klaus's latest patches and some clean-up
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[] ); |