[llvm] [DXIL] Adding support to RootSignatureFlags in obj2yaml (PR #122396)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 10:59:25 PST 2025
================
@@ -116,6 +116,29 @@ template <typename T> struct ViewArray {
};
namespace DirectX {
+
+class RootSignature {
+private:
+ StringRef Data;
+ uint32_t Version;
+ uint32_t NumParameters;
+ uint32_t RootParametersOffset;
+ uint32_t NumStaticSamplers;
+ uint32_t StaticSamplersOffset;
+ uint32_t Flags;
+
+public:
+ RootSignature(StringRef Data) : Data(Data) {}
+
+ Error parse();
----------------
joaosaffran wrote:
I did that way to keep the code consistent. I like @damyanp suggestion. I can refactor all cases that this suggestion falls into in a future PR. Thoughts @bogner ?
https://github.com/llvm/llvm-project/pull/122396
More information about the llvm-commits
mailing list