Advertisement
Ember

Formats

Jan 17th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.50 KB | None | 0 0
  1. enum class Format : UByte
  2. {
  3.     Unknown = 0,
  4.     RGBA32Typeless = 1,
  5.     RGBA32Float = 2,
  6.     RGBA32UInt = 3,
  7.     RGBA32SInt = 4,
  8.     RGB32Typeless = 5,
  9.     RGB32Float = 6,
  10.     RGB32UInt = 7,
  11.     RGB32SInt = 8,
  12.     RGBA16Typeless = 9,
  13.     RGBA16Float = 10,
  14.     RGBA16UNorm = 11,
  15.     RGBA16UInt = 12,
  16.     RGBA16SNorm = 13,
  17.     RGBA16SInt = 14,
  18.     RG32Typeless = 15,
  19.     RG32Float = 16,
  20.     RG32UInt = 17,
  21.     RG32SInt = 18,
  22.     R32G8X24Typeless = 19,
  23.     D32FloatS8X24UInt = 20,
  24.     R32FloatX8X24Typeless = 21,
  25.     X32TypelessG8X24UInt = 22,
  26.     RGB10A2Typeless = 23,
  27.     RGB10A2UNorm = 24,
  28.     RGB10A2UInt = 25,
  29.     RG11B10Float = 26,
  30.     RGBA8Typeless = 27,
  31.     RGBA8UNorm = 28,
  32.     RGBA8UNorm_sRGB = 29,
  33.     RGBA8UInt = 30,
  34.     RGBA8SNorm = 31,
  35.     RGBA8SInt = 32,
  36.     RG16Typeless = 33,
  37.     RG16Float = 34,
  38.     RG16UNorm = 35,
  39.     RG16UInt = 36,
  40.     RG16SNorm = 37,
  41.     RG16SInt = 38,
  42.     R32Typeless = 39,
  43.     D32Float = 40,
  44.     R32Float = 41,
  45.     R32UInt = 42,
  46.     R32SInt = 43,
  47.     R24G8Typeless = 44,
  48.     D24UNormS8UInt = 45,
  49.     R24UNormX8Typeless = 46,
  50.     X24TypelessG8UInt = 47,
  51.     RG8Typeless = 48,
  52.     RG8UNorm = 49,
  53.     RG8UInt = 50,
  54.     RG8SNorm = 51,
  55.     RG8SInt = 52,
  56.     R16Typeless = 53,
  57.     R16Float = 54,
  58.     D16UNorm = 55,
  59.     R16UNorm = 56,
  60.     R16UInt = 57,
  61.     R16SNorm = 58,
  62.     R16SInt = 59,
  63.     R8Typeless = 60,
  64.     R8UNorm = 61,
  65.     R8UInt = 62,
  66.     R8SNorm = 63,
  67.     R8SInt = 64,
  68.     A8UNorm = 65,
  69.     R1UNorm = 66,
  70.     RGB9E5_SHAREDEXP = 67,
  71.     RG8BG8UNorm = 68,
  72.     GR8GB8UNorm = 69,
  73.     BC1Typeless = 70,
  74.     BC1UNorm = 71,
  75.     BC1UNorm_sRGB = 72,
  76.     BC2Typeless = 73,
  77.     BC2UNorm = 74,
  78.     BC2UNorm_sRGB = 75,
  79.     BC3Typeless = 76,
  80.     BC3UNorm = 77,
  81.     BC3UNorm_sRGB = 78,
  82.     BC4Typeless = 79,
  83.     BC4UNorm = 80,
  84.     BC4SNorm = 81,
  85.     BC5Typeless = 82,
  86.     BC5UNorm = 83,
  87.     BC5SNorm = 84,
  88.     B5G6R5UNorm = 85,
  89.     BGR5A1UNorm = 86,
  90.     BGRA8UNorm = 87,
  91.     BGRX8UNorm = 88,
  92.     RGB10_XR_BIAS_A2UNorm = 89,
  93.     BGRA8Typeless = 90,
  94.     BGRA8UNorm_sRGB = 91,
  95.     BGRX8Typeless = 92,
  96.     BGRX8UNorm_sRGB = 93,
  97.     BC6HTypeless = 94,
  98.     BC6HUF16 = 95,
  99.     BC6HSF16 = 96,
  100.     BC7Typeless = 97,
  101.     BC7UNorm = 98,
  102.     BC7UNorm_sRGB = 99,
  103.     AYUV = 100,
  104.     Y410 = 101,
  105.     Y416 = 102,
  106.     NV12 = 103,
  107.     P010 = 104,
  108.     P016 = 105,
  109.     OPAQUE_420 = 106,
  110.     YUY2 = 107,
  111.     Y210 = 108,
  112.     Y216 = 109,
  113.     NV11 = 110,
  114.     AI44 = 111,
  115.     IA44 = 112,
  116.     P8 = 113,
  117.     A8P8 = 114,
  118.     BGRA4UNorm = 115
  119. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement