[clang] [llvm] [HLSL][RootSignature] Add `hlsl-rootsig-ver` option to specify root signature version (PR #144813)

Finn Plummer via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 20 15:56:14 PDT 2025


================
@@ -99,6 +99,12 @@ enum class SamplerFeedbackType : uint32_t {
 const unsigned MinWaveSize = 4;
 const unsigned MaxWaveSize = 128;
 
+// D3D_ROOT_SIGNATURE_VERSION
+enum class RootSignatureVersion {
+  rootsig_1_0 = 0x1,
+  rootsig_1_1 = 0x2,
+};
----------------
inbelic wrote:

Yes, thank you

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


More information about the llvm-commits mailing list