blob: b94bde94c2264e0bd30633e63b28978b2c119550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|