mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
turnip: add LRZ valid tracking for secondary command buffers
After a secondary command buffer is executed, LRZ is not valid until it is cleared again. Signed-off-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5146>
This commit is contained in:
parent
517b26bdd1
commit
0b2cfd0668
1 changed files with 7 additions and 0 deletions
|
|
@ -2754,6 +2754,13 @@ tu_CmdExecuteCommands(VkCommandBuffer commandBuffer,
|
|||
}
|
||||
cmd->state.dirty = ~0u; /* TODO: set dirty only what needs to be */
|
||||
|
||||
if (cmd->state.pass) {
|
||||
/* After a secondary command buffer is executed, LRZ is not valid
|
||||
* until it is cleared again.
|
||||
*/
|
||||
cmd->state.lrz.valid = false;
|
||||
}
|
||||
|
||||
/* After executing secondary command buffers, there may have been arbitrary
|
||||
* flushes executed, so when we encounter a pipeline barrier with a
|
||||
* srcMask, we have to assume that we need to invalidate. Therefore we need
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue