mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
fix-build: remove ctx->_Facing assignment
This commit is contained in:
parent
1b43babfb1
commit
169e62f563
1 changed files with 0 additions and 8 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue