[vulkan, sgsr] Added missing stage bit

This commit is contained in:
CamilleLaVey 2026-02-08 23:56:46 -04:00
parent 51337b58d9
commit a1c34f128b
1 changed files with 1 additions and 1 deletions

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),
};