move ltor computation
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 28 Jan 2003 00:14:32 +0000 (00:14 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 28 Jan 2003 00:14:32 +0000 (00:14 +0000)
src/mesa/swrast/s_aatritemp.h

index 4b3d1a092d7a39711f43f00cbe6e9179da32d3f1..b5d82a615c122fb983a417dd72bf21d49a79c404 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: s_aatritemp.h,v 1.33 2003/01/20 15:20:27 brianp Exp $ */
+/* $Id: s_aatritemp.h,v 1.34 2003/01/28 00:14:32 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
       const GLfloat botDx = vMid->win[0] - vMin->win[0];
       const GLfloat botDy = vMid->win[1] - vMin->win[1];
       const GLfloat area = majDx * botDy - botDx * majDy;
-      ltor = (GLboolean) (area < 0.0F);
       /* Do backface culling */
       if (area * bf < 0 || area == 0 || IS_INF_OR_NAN(area))
         return;
+      ltor = (GLboolean) (area < 0.0F);
    }
 
 #ifndef DO_OCCLUSION_TEST