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