From: Brian Paul Date: Tue, 28 Jan 2003 00:14:32 +0000 (+0000) Subject: move ltor computation X-Git-Tag: 062012170305~26049 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02de45dcedc38b0e4ceacba440bfc11930ec90bb;p=profile%2Fivi%2Fmesa.git move ltor computation --- diff --git a/src/mesa/swrast/s_aatritemp.h b/src/mesa/swrast/s_aatritemp.h index 4b3d1a0..b5d82a6 100644 --- a/src/mesa/swrast/s_aatritemp.h +++ b/src/mesa/swrast/s_aatritemp.h @@ -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 @@ -124,10 +124,10 @@ 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