From 02de45dcedc38b0e4ceacba440bfc11930ec90bb Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 28 Jan 2003 00:14:32 +0000 Subject: [PATCH] move ltor computation --- src/mesa/swrast/s_aatritemp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.7.4