projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0633dd
)
swrast: fix selection/feedback regression
author
Brian Paul
<brianp@vmware.com>
Mon, 31 Aug 2009 23:54:46 +0000
(17:54 -0600)
committer
Brian Paul
<brianp@vmware.com>
Tue, 1 Sep 2009 01:34:47 +0000
(19:34 -0600)
This fixes a conform selection/feedback regression introduced by commit
8f4d66c5f893b49eb3973aa3b31a856314c045c7
src/mesa/swrast/s_triangle.c
patch
|
blob
|
history
diff --git
a/src/mesa/swrast/s_triangle.c
b/src/mesa/swrast/s_triangle.c
index 1d2fed7169118ada77e48beb022a1c1985434194..1ab0e19f922860013e6aae57381dea6db7d88e51 100644
(file)
--- a/
src/mesa/swrast/s_triangle.c
+++ b/
src/mesa/swrast/s_triangle.c
@@
-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;