diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-07-03 10:06:13 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-07-03 10:06:13 -0600 |
commit | 3d04682b7a729ff4471528a57a6bdf64d235a43e (patch) | |
tree | 9dbe2337924a2a5db48df91c901b1f3a7f4bc185 /src/mesa | |
parent | f9b53f648d12ef7e4505d8303e14b90ebd444872 (diff) |
fix StepX/StepY typo
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/swrast/s_tritemp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h index f5bc03e81e..cded4a6c1c 100644 --- a/src/mesa/swrast/s_tritemp.h +++ b/src/mesa/swrast/s_tritemp.h @@ -393,7 +393,7 @@ static void NAME(GLcontext *ctx, const SWvertex *v0, span.greenStep = 0; span.blueStep = 0; # ifdef INTERP_ALPHA - span.attrStepX[FRAG_ATTRIB_COL0][3] = span.attrStepX[FRAG_ATTRIB_COL0][3] = 0.0F; + span.attrStepX[FRAG_ATTRIB_COL0][3] = span.attrStepY[FRAG_ATTRIB_COL0][3] = 0.0F; span.alphaStep = 0; # endif } |