mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
anv/cmd_buffer: skip vkCmdExecuteCommands() on broken command buffers
v2: Assert on secondary commands, applications should've called
vkEndCommandBuffer() and received an error for them before (Jason)
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
parent
801493051e
commit
a752c4ecda
1 changed files with 4 additions and 0 deletions
|
|
@ -646,6 +646,9 @@ genX(CmdExecuteCommands)(
|
|||
|
||||
assert(primary->level == VK_COMMAND_BUFFER_LEVEL_PRIMARY);
|
||||
|
||||
if (anv_batch_has_error(&primary->batch))
|
||||
return;
|
||||
|
||||
/* The secondary command buffers will assume that the PMA fix is disabled
|
||||
* when they begin executing. Make sure this is true.
|
||||
*/
|
||||
|
|
@ -655,6 +658,7 @@ genX(CmdExecuteCommands)(
|
|||
ANV_FROM_HANDLE(anv_cmd_buffer, secondary, pCmdBuffers[i]);
|
||||
|
||||
assert(secondary->level == VK_COMMAND_BUFFER_LEVEL_SECONDARY);
|
||||
assert(!anv_batch_has_error(&secondary->batch));
|
||||
|
||||
if (secondary->usage_flags &
|
||||
VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue