only traverse inputs when changed.

This commit is contained in:
goeiecool9999 2025-12-29 00:21:23 +01:00
parent 1c9381653e
commit 782d53eee6

View File

@ -1127,7 +1127,7 @@ void VulkanRenderer::draw_setRenderPass()
const bool syncSkipAllowed = !m_state.hasRenderSelfDependency || !(GetConfig().vk_accurate_barriers || m_state.activePipelineInfo->neverSkipAccurateBarrier);
const bool inputSyncNecessary = sync_isInputTexturesSyncRequired();
const bool inputSyncNecessary = m_state.descriptorSetsChanged && sync_isInputTexturesSyncRequired();
const bool FBOChanged = m_state.activeRenderpassFBO != fboVk;