mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2025-03-01 14:46:13 +00:00
radv: always dirty some states after executing secondary buffers
The spec requires the number of buffer to be greater than 0. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
4e65b4ea4b
commit
b253f3189a
@ -2622,6 +2622,8 @@ void radv_CmdExecuteCommands(
|
||||
{
|
||||
RADV_FROM_HANDLE(radv_cmd_buffer, primary, commandBuffer);
|
||||
|
||||
assert(commandBufferCount > 0);
|
||||
|
||||
/* Emit pending flushes on primary prior to executing secondary */
|
||||
si_emit_cache_flush(primary);
|
||||
|
||||
@ -2671,12 +2673,12 @@ void radv_CmdExecuteCommands(
|
||||
primary->state.last_primitive_reset_index = secondary->state.last_primitive_reset_index;
|
||||
}
|
||||
|
||||
/* if we execute secondary we need to mark some stuff to reset dirty */
|
||||
if (commandBufferCount) {
|
||||
primary->state.dirty |= RADV_CMD_DIRTY_PIPELINE;
|
||||
primary->state.dirty |= RADV_CMD_DIRTY_DYNAMIC_ALL;
|
||||
radv_mark_descriptor_sets_dirty(primary);
|
||||
}
|
||||
/* After executing commands from secondary buffers we have to dirty
|
||||
* some states.
|
||||
*/
|
||||
primary->state.dirty |= RADV_CMD_DIRTY_PIPELINE;
|
||||
primary->state.dirty |= RADV_CMD_DIRTY_DYNAMIC_ALL;
|
||||
radv_mark_descriptor_sets_dirty(primary);
|
||||
}
|
||||
|
||||
VkResult radv_CreateCommandPool(
|
||||
|
Loading…
x
Reference in New Issue
Block a user