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