From 28d293d531141d0b0331188683a127df1fcb2144 Mon Sep 17 00:00:00 2001 From: PancakeTAS Date: Mon, 4 Aug 2025 16:53:31 +0200 Subject: [PATCH] feat(fp16): update to use correct index --- framegen/src/core/descriptorset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framegen/src/core/descriptorset.cpp b/framegen/src/core/descriptorset.cpp index 15e1dc7..62e9017 100644 --- a/framegen/src/core/descriptorset.cpp +++ b/framegen/src/core/descriptorset.cpp @@ -92,7 +92,7 @@ DescriptorSetUpdateBuilder& DescriptorSetUpdateBuilder::add(VkDescriptorType typ this->entries.push_back({ .sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET, .dstSet = this->descriptorSet->handle(), - .dstBinding = static_cast(this->samplerIdx++), + .dstBinding = static_cast(this->bufferIdx++), .descriptorCount = 1, .descriptorType = type, .pImageInfo = nullptr,