summaryrefslogtreecommitdiffstats
path: root/tools/gfx/debug-layer/debug-render-pass.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/debug-layer/debug-render-pass.h')
-rw-r--r--tools/gfx/debug-layer/debug-render-pass.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-render-pass.h b/tools/gfx/debug-layer/debug-render-pass.h
new file mode 100644
index 000000000..1b17977db
--- /dev/null
+++ b/tools/gfx/debug-layer/debug-render-pass.h
@@ -0,0 +1,22 @@
+// debug-render-pass.h
+#pragma once
+#include "debug-base.h"
+
+namespace gfx
+{
+using namespace Slang;
+
+namespace debug
+{
+
+class DebugRenderPassLayout : public DebugObject<IRenderPassLayout>
+{
+public:
+ SLANG_COM_OBJECT_IUNKNOWN_ALL;
+
+public:
+ IRenderPassLayout* getInterface(const Slang::Guid& guid);
+};
+
+} // namespace debug
+} // namespace gfx