LeviLamina
Loading...
Searching...
No Matches
GPUMemoryInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace renoir {
6
7struct GPUMemoryInfo {
8public:
9 // GPUMemoryInfo inner types declare
10 // clang-format off
11 struct ResourceInfo;
12 struct ResourceArray;
13 struct BufferResourceInfo;
14 struct BufferArray;
15 // clang-format on
16
17 // GPUMemoryInfo inner types define
18 struct ResourceInfo {};
19
20 struct ResourceArray {};
21
22 struct BufferResourceInfo {};
23
24 struct BufferArray {};
25};
26
27} // namespace renoir
Definition GPUMemoryInfo.h:24
Definition GPUMemoryInfo.h:22
Definition GPUMemoryInfo.h:20
Definition GPUMemoryInfo.h:18