mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 02:10:12 +01:00
front/back-face determination was wrong
This commit is contained in:
parent
9e94e9b798
commit
bd5533bb7c
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ static void twoside_begin( struct prim_stage *stage )
|
|||
{
|
||||
struct twoside_stage *twoside = twoside_stage(stage);
|
||||
|
||||
twoside->facing = (stage->draw->setup.front_winding == PIPE_WINDING_CW) ? -1 : 1;
|
||||
twoside->facing = (stage->draw->setup.front_winding == PIPE_WINDING_CW) ? 1 : -1;
|
||||
|
||||
stage->next->begin( stage->next );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue