mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
iris: fix clip flagging on fb changes
This commit is contained in:
parent
0232fbc2c4
commit
eb274a31bc
1 changed files with 1 additions and 1 deletions
|
|
@ -1321,7 +1321,7 @@ iris_set_framebuffer_state(struct pipe_context *ctx,
|
|||
ice->state.dirty |= IRIS_DIRTY_BLEND_STATE;
|
||||
}
|
||||
|
||||
if ((cso->layers == 0) == (state->layers == 0)) {
|
||||
if ((cso->layers == 0) != (state->layers == 0)) {
|
||||
ice->state.dirty |= IRIS_DIRTY_CLIP;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue