diff options
author | Brian Paul <[email protected]> | 2003-09-18 22:25:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-18 22:25:31 +0000 |
commit | 87f858dd7cbca2280c983c77a239013a187c3e9a (patch) | |
tree | 5ee94b093edcf29094098706d4a6ec66d632880b /src/mesa/swrast/s_triangle.c | |
parent | e4b40a7cf154eddc59f1b11821a7664b0b95e7cf (diff) |
s/_backface_sign/_BackfaceSign/
Diffstat (limited to 'src/mesa/swrast/s_triangle.c')
-rw-r--r-- | src/mesa/swrast/s_triangle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_triangle.c b/src/mesa/swrast/s_triangle.c index 86fe4dc1fdc..5af74ee3ab8 100644 --- a/src/mesa/swrast/s_triangle.c +++ b/src/mesa/swrast/s_triangle.c @@ -60,7 +60,7 @@ GLboolean _swrast_culltriangle( GLcontext *ctx, GLfloat fy = v2->win[1] - v0->win[1]; GLfloat c = ex*fy-ey*fx; - if (c * SWRAST_CONTEXT(ctx)->_backface_sign > 0) + if (c * SWRAST_CONTEXT(ctx)->_BackfaceSign > 0) return 0; return 1; |