mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
zink: move last of lazy descriptor state updating back to lazy-only code
hybrid mode is controlled by the caching manager, so state tracking is irrelevant Reviewed-by: Dave Airlie <airlied@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13350>
This commit is contained in:
parent
140d3ea8c6
commit
dfd0f5dbfd
1 changed files with 1 additions and 1 deletions
|
|
@ -495,7 +495,6 @@ zink_descriptors_update_lazy_masked(struct zink_context *ctx, bool is_compute, u
|
||||||
pg->layout, type + 1, 1, &bdd->sets[is_compute][type + 1],
|
pg->layout, type + 1, 1, &bdd->sets[is_compute][type + 1],
|
||||||
0, NULL);
|
0, NULL);
|
||||||
}
|
}
|
||||||
dd_lazy(ctx)->state_changed[is_compute] = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -583,6 +582,7 @@ zink_descriptors_update_lazy(struct zink_context *ctx, bool is_compute)
|
||||||
bdd->pg[is_compute] = pg;
|
bdd->pg[is_compute] = pg;
|
||||||
ctx->dd->pg[is_compute] = pg;
|
ctx->dd->pg[is_compute] = pg;
|
||||||
bdd->compat_id[is_compute] = pg->compat_id;
|
bdd->compat_id[is_compute] = pg->compat_id;
|
||||||
|
dd_lazy(ctx)->state_changed[is_compute] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue