From bc21c65cebd3e97a80c0c09486662e11b56d1d46 Mon Sep 17 00:00:00 2001 From: AWoloszyn Date: Fri, 14 Sep 2018 14:53:29 -0400 Subject: [PATCH] Fix typo in descriptor api. This was small typo, it turns out to not have had much semantic meaning, since the next like will also catch the same condition. --- gapis/api/vulkan/api/descriptor.api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gapis/api/vulkan/api/descriptor.api b/gapis/api/vulkan/api/descriptor.api index 014c685db7..0fb99b685f 100644 --- a/gapis/api/vulkan/api/descriptor.api +++ b/gapis/api/vulkan/api/descriptor.api @@ -746,7 +746,7 @@ sub void dovkCmdBindDescriptorSets(ref!vkCmdBindDescriptorSetsArgs args) { // If the offset has changed, then we may have to reprocess this // descriptor set. if hasBeenRead.b { - if !(as!u32(j) in existingOffsets[as!u32(i)]) { + if !(as!u32(j) in existingOffsets) { hasBeenRead.b = false } else if !(as!u32(k) in existingOffsets[as!u32(j)]) { hasBeenRead.b = false