summaryrefslogtreecommitdiff
path: root/tools/gfx/debug-layer/debug-pipeline-state.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/debug-layer/debug-pipeline-state.h')
-rw-r--r--tools/gfx/debug-layer/debug-pipeline-state.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-pipeline-state.h b/tools/gfx/debug-layer/debug-pipeline-state.h
new file mode 100644
index 000000000..a539499c2
--- /dev/null
+++ b/tools/gfx/debug-layer/debug-pipeline-state.h
@@ -0,0 +1,23 @@
+// debug-pipeline-state.h
+#pragma once
+#include "debug-base.h"
+
+namespace gfx
+{
+using namespace Slang;
+
+namespace debug
+{
+
+class DebugPipelineState : public DebugObject<IPipelineState>
+{
+public:
+ SLANG_COM_OBJECT_IUNKNOWN_ALL;
+
+public:
+ IPipelineState* getInterface(const Slang::Guid& guid);
+ virtual SLANG_NO_THROW Result SLANG_MCALL getNativeHandle(InteropHandle* outHandle) override;
+};
+
+} // namespace debug
+} // namespace gfx