diff options
author | Brian Paul <[email protected]> | 2002-04-12 15:39:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-04-12 15:39:58 +0000 |
commit | b7f5e92f1749ce4601a758f66ddc64959f11742b (patch) | |
tree | b9d7056d88824cb49eab181c3ca6290039e1886f /src/mesa/swrast/s_texture.h | |
parent | 9add9a21d8c51ee4238169265541fa9a40f0a8b0 (diff) |
Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive
type, width, interp mask and array mask.
Diffstat (limited to 'src/mesa/swrast/s_texture.h')
-rw-r--r-- | src/mesa/swrast/s_texture.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mesa/swrast/s_texture.h b/src/mesa/swrast/s_texture.h index ba9642e04a5..91f147afe02 100644 --- a/src/mesa/swrast/s_texture.h +++ b/src/mesa/swrast/s_texture.h @@ -1,4 +1,4 @@ -/* $Id: s_texture.h,v 1.11 2002/01/28 04:25:56 brianp Exp $ */ +/* $Id: s_texture.h,v 1.12 2002/04/12 15:39:59 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -38,11 +38,12 @@ _swrast_choose_texture_sample_func( GLcontext *ctx, GLuint texUnit, const struct gl_texture_object *tObj ); + extern void -_swrast_texture_fragments( GLcontext *ctx, GLuint texSet, GLuint n, - GLfloat texcoords[][4], GLfloat lambda[], - CONST GLchan primary_rgba[][4], - GLchan rgba[][4] ); +_swrast_texture_fragments( GLcontext *ctx, GLuint texUnit, + struct sw_span *span, + CONST GLchan primary_rgba[][4]); + extern void _swrast_multitexture_fragments( GLcontext *ctx, struct sw_span *span ); |