Fix clipping problem on mga
authorKeith Whitwell <keith@tungstengraphics.com>
Thu, 20 Dec 2001 09:54:20 +0000 (09:54 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Thu, 20 Dec 2001 09:54:20 +0000 (09:54 +0000)
src/mesa/drivers/common/t_dd_vbtmp.h

index e5decb0b80da0c98e8e9b5a701d5b0861816fbec..5e58d1b6d89b735873c1b7ec6d3960f5ed6f1ef3 100644 (file)
@@ -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;