NcEngine
AssetType.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <cstdint>
8
9namespace nc::asset
10{
12enum class AssetType
13{
16 CubeMap,
17 Mesh,
19 Shader,
21 Texture,
22 Font
23};
24
36enum class TextureFormat : uint8_t
37{
38 UNKNOWN,
42 BC1_UNORM,
45};
46} // namespace nc::asset
TextureFormat
Texture formats.
Definition: AssetType.h:37
@ BC1_UNORM
32-bit unorm compressed with BC1 (DXT1)
@ RGBA8_UNORM_SRGB
32-bit unorm sRGB
@ UNKNOWN
uninitialized value
@ RGBA8_UNORM
32-bit unorm
@ BC3_UNORM_SRGB
32-bit unorm sRGB compressed with BC3 (DXT5)
@ BC3_UNORM
32-bit unorm compressed with BC3 (DXT5)
@ BC1_UNORM_SRGB
32-bit unorm sRGB compressed with BC1 (DXT1)
AssetType
Indicates type of an asset.
Definition: AssetType.h:13
Definition: Assets.h:21
Definition: Assets.h:49
Definition: Assets.h:146
Definition: Assets.h:56
Definition: Assets.h:74
Definition: Assets.h:89
Definition: Assets.h:120
Definition: Assets.h:135