diff options
Diffstat (limited to 'tools/gfx/debug-layer/debug-shader-table.h')
| -rw-r--r-- | tools/gfx/debug-layer/debug-shader-table.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-shader-table.h b/tools/gfx/debug-layer/debug-shader-table.h new file mode 100644 index 000000000..b94bde94c --- /dev/null +++ b/tools/gfx/debug-layer/debug-shader-table.h @@ -0,0 +1,20 @@ +// debug-shader-table.h +#pragma once +#include "debug-base.h" + +namespace gfx +{ +using namespace Slang; + +namespace debug +{ + +class DebugShaderTable : public DebugObject<IShaderTable> +{ +public: + SLANG_COM_OBJECT_IUNKNOWN_ALL; + IShaderTable* getInterface(const Slang::Guid& guid); +}; + +} // namespace debug +} // namespace gfx |
