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