aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast/s_aatriangle.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-04-05 17:52:47 -0600
committerBrian Paul <[email protected]>2011-04-05 20:18:46 -0600
commit14b574433c7faedaa18f1c946159cb03630c7d9f (patch)
tree76ea878425bc550fda37ebdf5024b71bf45049a1 /src/mesa/swrast/s_aatriangle.c
parent874a2c0b7da62f4dd08dedcec221f55b22e40e95 (diff)
swrast: simplify assertion to silence warning
Diffstat (limited to 'src/mesa/swrast/s_aatriangle.c')
-rw-r--r--src/mesa/swrast/s_aatriangle.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mesa/swrast/s_aatriangle.c b/src/mesa/swrast/s_aatriangle.c
index 2c02a01327f..2e8767a33d9 100644
--- a/src/mesa/swrast/s_aatriangle.c
+++ b/src/mesa/swrast/s_aatriangle.c
@@ -215,12 +215,7 @@ compute_coveragef(const GLfloat v0[3], const GLfloat v1[3],
GLint stop = 4, i;
GLfloat insideCount = 16.0F;
-#ifdef DEBUG
- {
- const GLfloat area = dx0 * dy1 - dx1 * dy0;
- ASSERT(area >= 0.0);
- }
-#endif
+ ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */
for (i = 0; i < stop; i++) {
const GLfloat sx = x + samples[i][0];