mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
vc4: Flip which primitives are considered front-facing.
This mostly fixes glxgears rendering.
This commit is contained in:
parent
f097516505
commit
602a3f92d4
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ vc4_create_rasterizer_state(struct pipe_context *pctx,
|
|||
/* XXX: per_vertex */
|
||||
so->point_size = cso->point_size;
|
||||
|
||||
if (!cso->front_ccw)
|
||||
if (cso->front_ccw)
|
||||
so->config_bits[0] |= VC4_CONFIG_BITS_CW_PRIMITIVES;
|
||||
|
||||
if (cso->offset_tri)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue