diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-02-15 03:39:37 +0000 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-02-15 03:39:37 +0000 | 
| commit | a048da076711e38829402418d1d96acfaa8360ee (patch) | |
| tree | ed6c228c045ac860ec2e6c8ae20f02ec99893f6d /src | |
| parent | 3ff07d20621811178b64a935f1de0400bde902aa (diff) | |
added SPAN_SPEC flag in smooth_multitextured_line()
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/swrast/s_lines.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/mesa/swrast/s_lines.c b/src/mesa/swrast/s_lines.c index 3fb895f160..b50454f3b0 100644 --- a/src/mesa/swrast/s_lines.c +++ b/src/mesa/swrast/s_lines.c @@ -1,4 +1,4 @@ -/* $Id: s_lines.c,v 1.25 2002/02/02 21:40:33 brianp Exp $ */ +/* $Id: s_lines.c,v 1.26 2002/02/15 03:39:37 brianp Exp $ */  /*   * Mesa 3-D graphics library @@ -566,7 +566,7 @@ static void smooth_multitextured_line( GLcontext *ctx,     ASSERT(ctx->Light.ShadeModel == GL_SMOOTH);     INIT_SPAN(span); -   span.arrayMask |= (SPAN_XY | SPAN_Z | SPAN_FOG | SPAN_RGBA | SPAN_TEXTURE | SPAN_LAMBDA); +   span.arrayMask |= (SPAN_XY | SPAN_Z | SPAN_FOG | SPAN_RGBA | SPAN_SPEC | SPAN_TEXTURE | SPAN_LAMBDA);  #define SET_XMAJOR 1  #define INTERP_XY 1 | 
