swrast: fix selection/feedback regression
authorBrian Paul <brianp@vmware.com>
Mon, 31 Aug 2009 23:54:46 +0000 (17:54 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 31 Aug 2009 23:54:46 +0000 (17:54 -0600)
This fixes a conform selection/feedback regression introduced by commit
8f4d66c5f893b49eb3973aa3b31a856314c045c7

src/mesa/swrast/s_triangle.c

index 1d2fed7..1ab0e19 100644 (file)
@@ -61,7 +61,7 @@ _swrast_culltriangle( GLcontext *ctx,
    GLfloat fy = v2->attrib[FRAG_ATTRIB_WPOS][1] - v0->attrib[FRAG_ATTRIB_WPOS][1];
    GLfloat c = ex*fy-ey*fx;
 
-   if (c * swrast->_BackfaceSign * swrast->_BackfaceCullSign < 0.0F)
+   if (c * swrast->_BackfaceSign * swrast->_BackfaceCullSign <= 0.0F)
       return GL_FALSE;
 
    return GL_TRUE;