LeviLamina
Loading...
Searching...
No Matches
VertexDeclManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace dragon::mesh {
6
8public:
9 // VertexDeclManager inner types declare
10 // clang-format off
11 struct Impl;
12 // clang-format on
13
14 // VertexDeclManager inner types define
15 struct Impl {
16 public:
17 // Impl inner types declare
18 // clang-format off
19 struct DeclLayout;
20 struct ValidationKey;
21 // clang-format on
22
23 // Impl inner types define
24 struct DeclLayout {};
25
26 struct ValidationKey {};
27 };
28};
29
30} // namespace dragon::mesh
Definition VertexDeclManager.h:7
Definition VertexDeclManager.h:24
Definition VertexDeclManager.h:15