LeviLamina
Loading...
Searching...
No Matches
ImageType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cg {
6
7enum class ImageType : uchar {
8 Texture2D = 0,
9 CubemapDeprecated = 1,
10 Texture3D = 2,
11 TextureCube = 3,
12};
13
14}