[vulkan, sgsr] Added missing stage bit

This commit is contained in:
CamilleLaVey 2026-02-08 23:56:46 -04:00 committed by lizzie
parent 3de98c9bac
commit 985b9806fb

View file

@ -49,7 +49,7 @@ SGSR::SGSR(const Device& device, MemoryAllocator& memory_allocator, size_t image
images.descriptor_sets = CreateWrappedDescriptorSets(m_descriptor_pool, layouts);
const VkPushConstantRange range{
.stageFlags = VK_SHADER_STAGE_FRAGMENT_BIT,
.stageFlags = VK_SHADER_STAGE_VERTEX_BIT | VK_SHADER_STAGE_FRAGMENT_BIT,
.offset = 0,
.size = sizeof(PushConstants),
};