Vulkan: fix validation error in bSupportsGeometryShaders=false case
In CreateDescriptorSetLayouts(), one less dynamic binding is created when bSupportsGeometryShaders=false. Reduce the dynamicOffsetCount argument by one in that case. Avoids this validation error: Attempting to bind 3 descriptorSets with 2 dynamic descriptors, but dynamicOffsetCount is 3. It should exactly match the number of dynamic descriptors. The Vulkan spec states: dynamicOffsetCount must be equal to the total number of dynamic descriptors in pDescriptorSets Signed-off-by: Jonathan Marek <jonathan@marek.ca> [Applied clang-format] Signed-off-by: Léo Lam <leo@leolam.fr>
This commit is contained in:
parent
c580a70a12
commit
a20e69ff51
|
@ -542,7 +542,10 @@ bool StateTracker::UpdateGXDescriptorSet()
|
||||||
g_ActiveConfig.backend_info.bSupportsBBox ?
|
g_ActiveConfig.backend_info.bSupportsBBox ?
|
||||||
NUM_GX_DESCRIPTOR_SETS :
|
NUM_GX_DESCRIPTOR_SETS :
|
||||||
(NUM_GX_DESCRIPTOR_SETS - 1),
|
(NUM_GX_DESCRIPTOR_SETS - 1),
|
||||||
m_gx_descriptor_sets.data(), NUM_UBO_DESCRIPTOR_SET_BINDINGS,
|
m_gx_descriptor_sets.data(),
|
||||||
|
g_ActiveConfig.backend_info.bSupportsGeometryShaders ?
|
||||||
|
NUM_UBO_DESCRIPTOR_SET_BINDINGS :
|
||||||
|
(NUM_UBO_DESCRIPTOR_SET_BINDINGS - 1),
|
||||||
m_bindings.gx_ubo_offsets.data());
|
m_bindings.gx_ubo_offsets.data());
|
||||||
m_dirty_flags &= ~(DIRTY_FLAG_DESCRIPTOR_SETS | DIRTY_FLAG_GX_UBO_OFFSETS);
|
m_dirty_flags &= ~(DIRTY_FLAG_DESCRIPTOR_SETS | DIRTY_FLAG_GX_UBO_OFFSETS);
|
||||||
}
|
}
|
||||||
|
@ -550,7 +553,10 @@ bool StateTracker::UpdateGXDescriptorSet()
|
||||||
{
|
{
|
||||||
vkCmdBindDescriptorSets(g_command_buffer_mgr->GetCurrentCommandBuffer(),
|
vkCmdBindDescriptorSets(g_command_buffer_mgr->GetCurrentCommandBuffer(),
|
||||||
VK_PIPELINE_BIND_POINT_GRAPHICS, m_pipeline->GetVkPipelineLayout(), 0,
|
VK_PIPELINE_BIND_POINT_GRAPHICS, m_pipeline->GetVkPipelineLayout(), 0,
|
||||||
1, m_gx_descriptor_sets.data(), NUM_UBO_DESCRIPTOR_SET_BINDINGS,
|
1, m_gx_descriptor_sets.data(),
|
||||||
|
g_ActiveConfig.backend_info.bSupportsGeometryShaders ?
|
||||||
|
NUM_UBO_DESCRIPTOR_SET_BINDINGS :
|
||||||
|
(NUM_UBO_DESCRIPTOR_SET_BINDINGS - 1),
|
||||||
m_bindings.gx_ubo_offsets.data());
|
m_bindings.gx_ubo_offsets.data());
|
||||||
m_dirty_flags &= ~DIRTY_FLAG_GX_UBO_OFFSETS;
|
m_dirty_flags &= ~DIRTY_FLAG_GX_UBO_OFFSETS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue