diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-30 15:52:27 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-30 15:52:27 -0700 |
commit | b0b882b666da0673b5f2aa7676e54438538c6a7f (patch) | |
tree | c462c3049e41fb4f8c4b4d2a95a3dd7cd0d9fbfa | |
parent | fcd7c37fd3d0f61cf6ac81170bc0b3fca64ad9bb (diff) |
fix-build: remove ctx->_Facing assignment
-rw-r--r-- | src/mesa/tnl_dd/t_dd_tritmp.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/tnl_dd/t_dd_tritmp.h b/src/mesa/tnl_dd/t_dd_tritmp.h index 0bf32ff34..6c2378f5e 100644 --- a/src/mesa/tnl_dd/t_dd_tritmp.h +++ b/src/mesa/tnl_dd/t_dd_tritmp.h @@ -155,10 +155,6 @@ static void TAG(triangle)( GLcontext *ctx, GLuint e0, GLuint e1, GLuint e2 ) { facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit; - if (DO_TWOSTENCIL && ctx->Stencil.TestTwoSide) { - ctx->_Facing = facing; /* mixed mode rendering: for 2-sided stencil test */ - } - if (DO_UNFILLED) { if (facing) { mode = ctx->Polygon.BackMode; @@ -421,10 +417,6 @@ static void TAG(quad)( GLcontext *ctx, { facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit; - if (DO_TWOSTENCIL && ctx->Stencil.TestTwoSide) { - ctx->_Facing = facing; /* mixed mode rendering: for 2-sided stencil test */ - } - if (DO_UNFILLED) { if (facing) { mode = ctx->Polygon.BackMode; |