pk3DS/pk3DS.Core/CTR/Images/XLIMEncoding.cs
Kurt a31571d1d6 Rearranging
need to make bclim code generic (bmp data -> encoded swizzle)
CLIM is now
2018-01-01 20:29:26 -08:00

20 lines
696 B
C#

namespace pk3DS.Core.CTR
{
public enum XLIMEncoding : byte
{
L8 = 0x00, // 8 Luminance
A8 = 0x01, // 8 Alpha
LA4 = 0x02, // 8 Luminance + Alpha
LA8 = 0x03, // 16 Luminance + Alpha
HILO8 = 0x04, // 16 ?
RGB565 = 0x05, // 16 Color
RGBX8 = 0x06, // 24 Color
RGB5A1 = 0x07, // 16 Color + Alpha
RGBA4 = 0x08, // 16 Color + Alpha
RGBA8 = 0x09, // 32 Color + Alpha
ETC1 = 0x0A, // 4 Color
ETC1A4 = 0x0B, // 8 Color + Alpha
L4 = 0x0C, // 4 Luminance
A4 = 0x0D, // 4 Alpha
}
}