[Mesa-dev] [PATCH 2/6] swrast: fix wrong assignments in _swrast_add_spec_terms_line()
Brian Paul
brian.e.paul at gmail.com
Mon Aug 27 20:53:09 PDT 2012
From: Brian Paul <brianp at vmware.com>
---
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 2078be4..cfd3e6f 100644
--- a/src/mesa/swrast/s_lines.c
+++ b/src/mesa/swrast/s_lines.c
@@ -188,8 +188,8 @@ _swrast_add_spec_terms_line(struct gl_context *ctx,
/* draw */
SWRAST_CONTEXT(ctx)->SpecLine( ctx, ncv0, ncv1 );
/* restore original colors */
- COPY_CHAN4( ncv0->attrib[FRAG_ATTRIB_COL0], cSave[0] );
- COPY_CHAN4( ncv1->attrib[FRAG_ATTRIB_COL0], cSave[1] );
+ COPY_CHAN4(ncv0->color, cSave[0]);
+ COPY_CHAN4(ncv1->color, cSave[1]);
}
--
1.7.4.1
More information about the mesa-dev
mailing list