diff options
author | Brian Paul <[email protected]> | 2012-08-25 07:08:10 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-08-29 08:20:58 -0600 |
commit | ba6f47132d057937cb55f5aaf9b79bd667b7a48d (patch) | |
tree | ed261795759dfe2b84c0ef83227fb78c6f8d53e4 /src | |
parent | 1aee8803f83f7ae24d9c2150c70afff2b1ee4c2f (diff) |
swrast: fix wrong assignments in _swrast_add_spec_terms_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 2078be43b44..cfd3e6fa9f6 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]); } |