[llvm] [SPIRV] Add reads from image buffer for shaders. (PR #115178)

Vyacheslav Levytskyy via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 12 03:46:40 PST 2024


================
@@ -719,6 +720,10 @@ void RequirementHandler::initAvailableCapabilitiesForVulkan(
          Capability::UniformTexelBufferArrayNonUniformIndexingEXT,
          Capability::StorageTexelBufferArrayNonUniformIndexingEXT});
   }
+
+  // Became core in Vulkan 1.3
+  if (ST.isAtLeastSPIRVVer(VersionTuple(1, 6)))
----------------
VyacheslavLevytskyy wrote:

Should it be `VersionTuple(1, 3)`?

https://github.com/llvm/llvm-project/pull/115178


More information about the llvm-commits mailing list