Nameless Engine
Loading...
Searching...
No Matches
DirectXDescriptorType.hpp
1#pragma once
2
3namespace ne {
5 enum class DirectXDescriptorType : size_t {
6 RTV = 0,
7 DSV,
8 CBV,
9 SRV,
10 UAV,
11
12 END // marks the size of this enum
13 };
14}