diff options
author | Brian Paul <[email protected]> | 2009-06-03 17:28:31 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-06-03 17:28:31 -0600 |
commit | 1f1aa0c20cb7dd0ae14b01f89aaa99cc6eebf919 (patch) | |
tree | 071a2807c0ae574b4db82950da99eaf136f8cc4b /src/mesa/tnl | |
parent | 2ecc2ece9c2740958f303e0426fdc9037c40eb3a (diff) |
tnl: fix first provoking vertex bug for line loops
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_vb_rendertmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vb_rendertmp.h b/src/mesa/tnl/t_vb_rendertmp.h index f0da0cdf0de..05d13090642 100644 --- a/src/mesa/tnl/t_vb_rendertmp.h +++ b/src/mesa/tnl/t_vb_rendertmp.h @@ -148,7 +148,7 @@ static void TAG(render_line_loop)( GLcontext *ctx, if (ctx->Light.ProvokingVertex == GL_LAST_VERTEX_CONVENTION_EXT) RENDER_LINE( ELT(count-1), ELT(start) ); else - RENDER_LINE( ELT(count), ELT(start-1) ); /* XXX check this one */ + RENDER_LINE( ELT(start), ELT(count-1) ); } } |