From 78a548ad2b7007f14e1ba9ee9412e69dc2b098bf Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Tue, 14 May 2024 12:42:43 +0100 Subject: [PATCH] DXIL::Program header clarified IDebugInfo interface boundary --- renderdoc/driver/shaders/dxil/dxil_bytecode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/driver/shaders/dxil/dxil_bytecode.h b/renderdoc/driver/shaders/dxil/dxil_bytecode.h index aa04aebce..dfc647464 100644 --- a/renderdoc/driver/shaders/dxil/dxil_bytecode.h +++ b/renderdoc/driver/shaders/dxil/dxil_bytecode.h @@ -1294,7 +1294,6 @@ public: const rdcstr &GetDisassembly(bool dxcStyle, const DXBC::Reflection *reflection); // IDebugInfo interface - rdcstr GetCompilerSig() const override { return m_CompilerSig; } rdcstr GetEntryFunction() const override { return m_EntryPoint; } rdcstr GetShaderProfile() const override { return m_Profile; } @@ -1305,6 +1304,7 @@ public: bool HasSourceMapping() const override; void GetLocals(const DXBC::DXBCContainer *dxbc, size_t instruction, uintptr_t offset, rdcarray &locals) const override; + // IDebugInfo interface const Metadata *GetMetadataByName(const rdcstr &name) const; uint32_t GetDirectHeapAcessCount() const { return m_directHeapAccessCount; }