yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

lucy96chenSplit debug-layer into smaller files (#2344)12a846e8f

master
325 B20 linesraw
1// debug-shader-table.h
2#pragma once
3#include "debug-base.h"
4
5namespace gfx
6{
7using namespace Slang;
8
9namespace debug
10{
11
12class DebugShaderTable : public DebugObject<IShaderTable>
13{
14public:
15    SLANG_COM_OBJECT_IUNKNOWN_ALL;
16    IShaderTable* getInterface(const Slang::Guid& guid);
17};
18
19} // namespace debug
20} // namespace gfx