From beefd5b044839720f3c97f0abd0f1a8b82803a80 Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 3 Apr 2024 12:40:22 +0100 Subject: [PATCH] Fix descriptor set index reference in VK_Graphics_Pipeline test --- util/test/tests/Vulkan/VK_Graphics_Pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/test/tests/Vulkan/VK_Graphics_Pipeline.py b/util/test/tests/Vulkan/VK_Graphics_Pipeline.py index e1971f3a8..a7080cd58 100644 --- a/util/test/tests/Vulkan/VK_Graphics_Pipeline.py +++ b/util/test/tests/Vulkan/VK_Graphics_Pipeline.py @@ -68,7 +68,7 @@ class VK_Graphics_Pipeline(rdtest.TestCase): vkpipe = self.controller.GetVulkanPipelineState() - binding = vkpipe.graphics.descriptorSets[2].bindings[0] + binding = vkpipe.graphics.descriptorSets[1].bindings[0] if binding.dynamicallyUsedCount != 1: raise rdtest.TestFailureException("Bind 0 doesn't have the right used count {}"