NcEngine
AssetType.h File Reference
#include <cstdint>

Go to the source code of this file.

Enumerations

enum class  nc::asset::AssetType {
  AudioClip , ConvexHull , CubeMap , Mesh ,
  MeshCollider , Shader , SkeletalAnimation , Texture ,
  Font
}
 Indicates type of an asset.
 
enum class  nc::asset::TextureFormat : uint8_t {
  UNKNOWN , RGBA8_UNORM_SRGB , RGBA8_UNORM , BC1_UNORM_SRGB ,
  BC1_UNORM , BC3_UNORM_SRGB , BC3_UNORM
}
 Texture formats. More...
 

Detailed Description

Enumeration Type Documentation

◆ TextureFormat

enum class nc::asset::TextureFormat : uint8_t
strong

Texture formats.

Formats:

  • RGBA8: Uncompressed signed-normalized-integer format with 8 bit channels.
  • BC1: RGB data compressing 4x4 blocks in 8 bytes. Ideal for typical color images with full opacity.
  • BC3: RGBA data compressing 4x4 blocks into 16 bytes. Ideal for color images with alpha.

BCn formats require input image dimension to be powers of two and be at least 4x4. This is enforced at conversion time by padding the image.

Enumerator
UNKNOWN 

uninitialized value

RGBA8_UNORM_SRGB 

32-bit unorm sRGB

RGBA8_UNORM 

32-bit unorm

BC1_UNORM_SRGB 

32-bit unorm sRGB compressed with BC1 (DXT1)

BC1_UNORM 

32-bit unorm compressed with BC1 (DXT1)

BC3_UNORM_SRGB 

32-bit unorm sRGB compressed with BC3 (DXT5)

BC3_UNORM 

32-bit unorm compressed with BC3 (DXT5)