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