mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 08:08:06 +02:00
iris: reemit SBE when sprite coord origin changes
fixes arb_point_sprite-checkerboard
This commit is contained in:
parent
480c62bc7e
commit
19803d0aa7
1 changed files with 3 additions and 1 deletions
|
|
@ -1222,7 +1222,9 @@ iris_bind_rasterizer_state(struct pipe_context *ctx, void *state)
|
|||
cso_changed(clip_halfz))
|
||||
ice->state.dirty |= IRIS_DIRTY_CC_VIEWPORT;
|
||||
|
||||
if (cso_changed(sprite_coord_enable) || cso_changed(light_twoside))
|
||||
if (cso_changed(sprite_coord_enable) ||
|
||||
cso_changed(sprite_coord_mode) ||
|
||||
cso_changed(light_twoside))
|
||||
ice->state.dirty |= IRIS_DIRTY_SBE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue