[clang] [llvm] [HLSL] Update Frontend to support version 1.2 of root signature (PR #160616)
Justin Bogner via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 1 12:06:32 PDT 2025
================
@@ -550,7 +550,7 @@ class LangOptions : public LangOptionsBase {
/// The HLSL root signature version for dxil.
llvm::dxbc::RootSignatureVersion HLSLRootSigVer =
- llvm::dxbc::RootSignatureVersion::V1_1;
+ llvm::dxbc::RootSignatureVersion::V1_2;
----------------
bogner wrote:
Does this need to stay as `V1_1` since we aren't changing the default here? This might be a good place to comment that we default to v1.1 to match dxc as well.
https://github.com/llvm/llvm-project/pull/160616
More information about the llvm-commits
mailing list