mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
use parentheses to avoid warning
This commit is contained in:
parent
16e6f05772
commit
fd9b30750a
1 changed files with 1 additions and 1 deletions
|
|
@ -1079,7 +1079,7 @@ _mesa_PopAttrib(void)
|
|||
stencil->ZFailFunc[face],
|
||||
stencil->ZPassFunc[face]);
|
||||
face ^= 1;
|
||||
} while (face != stencil->ActiveFace ^ 1);
|
||||
} while (face != (stencil->ActiveFace ^ 1));
|
||||
}
|
||||
break;
|
||||
case GL_TRANSFORM_BIT:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue