diff options
author | Keith Whitwell <[email protected]> | 2001-01-17 02:49:38 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-01-17 02:49:38 +0000 |
commit | c0bcd2ca99609fe8b6e992e2277ef8612d46fdfe (patch) | |
tree | 3aa0c90e1f864323e35e51679aa5d69bf07a3c97 /src/mesa/tnl/t_vb_cliptmp.h | |
parent | 547bbcabffffad1a630c261830998c511efc2b96 (diff) |
Fixes for performance bug on compiled array element paths.
Diffstat (limited to 'src/mesa/tnl/t_vb_cliptmp.h')
-rw-r--r-- | src/mesa/tnl/t_vb_cliptmp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_vb_cliptmp.h b/src/mesa/tnl/t_vb_cliptmp.h index 56f2031c90e..35fe391b847 100644 --- a/src/mesa/tnl/t_vb_cliptmp.h +++ b/src/mesa/tnl/t_vb_cliptmp.h @@ -1,4 +1,4 @@ -/* $Id: t_vb_cliptmp.h,v 1.6 2001/01/13 05:48:26 keithw Exp $ */ +/* $Id: t_vb_cliptmp.h,v 1.7 2001/01/17 02:49:39 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -185,11 +185,11 @@ static void TAG(clip_line)( GLcontext *ctx, } } - TAG(build_proj_verts)( ctx ); - if ((ctx->_TriangleCaps & DD_FLATSHADE) && j != jj) VB->copypvfunc( ctx, jj, j ); + TAG(build_proj_verts)( ctx ); + /* Render the new line. */ ctx->Driver.LineFunc( ctx, ii, jj ); |