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