diff options
author | Bas Nieuwenhuizen <[email protected]> | 2017-09-13 00:12:48 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2017-09-15 23:12:25 +0200 |
commit | 5ef3c2bcef1a9d82a915615ec21c56abbef47fef (patch) | |
tree | 606fd8d42597342990f9ccc0193bceea6a376680 | |
parent | 979978ee06867a531b8d56cee252f5c83920a339 (diff) |
radv: Don't redundantly emit pipelines after secondary cmd buffer.
Reviewed-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_cmd_buffer.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index 5f22733a7d9..4ba552ebcbc 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -2653,16 +2653,17 @@ void radv_CmdExecuteCommands( assert(secondary->ring_offsets_idx == primary->ring_offsets_idx); } primary->device->ws->cs_execute_secondary(primary->cs, secondary->cs); + + primary->state.emitted_pipeline = secondary->state.emitted_pipeline; + primary->state.emitted_compute_pipeline = secondary->state.emitted_compute_pipeline; + primary->state.last_primitive_reset_en = secondary->state.last_primitive_reset_en; + primary->state.last_primitive_reset_index = secondary->state.last_primitive_reset_index; } - /* if we execute secondary we need to re-emit out pipelines */ + /* if we execute secondary we need to mark some stuff to reset dirty */ if (commandBufferCount) { - primary->state.emitted_pipeline = NULL; - primary->state.emitted_compute_pipeline = NULL; primary->state.dirty |= RADV_CMD_DIRTY_PIPELINE; primary->state.dirty |= RADV_CMD_DIRTY_DYNAMIC_ALL; - primary->state.last_primitive_reset_en = -1; - primary->state.last_primitive_reset_index = 0; radv_mark_descriptor_sets_dirty(primary); } } |