From: Bas Nieuwenhuizen Date: Tue, 12 Sep 2017 22:12:48 +0000 (+0200) Subject: radv: Don't redundantly emit pipelines after secondary cmd buffer. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5ef3c2bcef1a9d82a915615ec21c56abbef47fef;p=mesa.git radv: Don't redundantly emit pipelines after secondary cmd buffer. Reviewed-by: Dave Airlie --- 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); } }