diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2001-12-20 09:54:20 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2001-12-20 09:54:20 +0000 |
commit | 1643203a936ae5503d5cf23177e444ac5971e7d1 (patch) | |
tree | 5a0ff8571e7610326805f95313b91f5c13a963d3 /src/mesa | |
parent | a359d3488a31132d9fce3f9bc4586e730fde35bd (diff) |
Fix clipping problem on mga
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/common/t_dd_vbtmp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/common/t_dd_vbtmp.h b/src/mesa/drivers/common/t_dd_vbtmp.h index e5decb0b80..5e58d1b6d8 100644 --- a/src/mesa/drivers/common/t_dd_vbtmp.h +++ b/src/mesa/drivers/common/t_dd_vbtmp.h @@ -1,4 +1,4 @@ -/* $Id: t_dd_vbtmp.h,v 1.14 2001/05/03 16:49:28 keithw Exp $ */ +/* $Id: t_dd_vbtmp.h,v 1.15 2001/12/20 09:54:20 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -624,7 +624,7 @@ static void TAG(interp)( GLcontext *ctx, if ((HAVE_HW_DIVIDE && CHECK_HW_DIVIDE) || DO_FOG || DO_SPEC || DO_TEX0 || DO_TEX1 || - DO_TEX2 || DO_TEX3) { + DO_TEX2 || DO_TEX3 || !HAVE_TINY_VERTICES) { dst->v.w = w; @@ -729,7 +729,7 @@ static void TAG(init)( void ) if (DO_SPEC) setup_tab[IND].copy_pv = copy_pv_rgba4_spec5; else if (HAVE_HW_DIVIDE || DO_SPEC || DO_FOG || DO_TEX0 || DO_TEX1 || - DO_TEX2 || DO_TEX3) + DO_TEX2 || DO_TEX3 || !HAVE_TINY_VERTICES) setup_tab[IND].copy_pv = copy_pv_rgba4; else setup_tab[IND].copy_pv = copy_pv_rgba3; |