From 84803279ca83a21d830a76764c25e26e01e7ebc2 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Sat, 7 Apr 2007 08:46:10 -0600 Subject: [PATCH] fix some CHAN_TYPE==GL_FLOAT breakage --- src/mesa/swrast/s_tritemp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h index c2b757f33ed..b25d3d1550c 100644 --- a/src/mesa/swrast/s_tritemp.h +++ b/src/mesa/swrast/s_tritemp.h @@ -561,9 +561,9 @@ static void NAME(GLcontext *ctx, const SWvertex *v0, span.attrStepX[FRAG_ATTRIB_COL1][2] = oneOverArea * (eMaj_dsb * eBot.dy - eMaj.dy * eBot_dsb); span.attrStepY[FRAG_ATTRIB_COL1][2] = oneOverArea * (eMaj.dx * eBot_dsb - eMaj_dsb * eBot.dx); # if CHAN_TYPE == GL_FLOAT - span.specRedStep = span.attrStep[FRAG_ATTRIB_COL1][0]; - span.specGreenStep = span.dsgdx; - span.specBlueStep = span.dsbdx; + span.specRedStep = span.attrStepX[FRAG_ATTRIB_COL1][0]; + span.specGreenStep = span.attrStepX[FRAG_ATTRIB_COL1][1]; + span.specBlueStep = span.attrStepX[FRAG_ATTRIB_COL1][2]; # else span.specRedStep = SignedFloatToFixed(span.attrStepX[FRAG_ATTRIB_COL1][0]); span.specGreenStep = SignedFloatToFixed(span.attrStepX[FRAG_ATTRIB_COL1][1]); -- 2.30.2