From: Thomas Edvalson Date: Tue, 3 May 2016 02:46:37 +0000 (-0400) Subject: Fix ETC1 texture format enums and add A4 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=3129c35e714f1f415d7e8be9b94eaef7a17155b8;p=corbenik%2Fctrulib.git Fix ETC1 texture format enums and add A4 --- diff --git a/libctru/include/3ds/gpu/enums.h b/libctru/include/3ds/gpu/enums.h index af6f0ad..e89e3f8 100644 --- a/libctru/include/3ds/gpu/enums.h +++ b/libctru/include/3ds/gpu/enums.h @@ -73,8 +73,9 @@ typedef enum GPU_A8 = 0x8, ///< 8-bit Alpha GPU_LA4 = 0x9, ///< 4-bit Luminance + 4-bit Alpha GPU_L4 = 0xA, ///< 4-bit Luminance - GPU_ETC1 = 0xB, ///< ETC1 texture compression - GPU_ETC1A4 = 0xC, ///< ETC1 texture compression + 4-bit Alpha + GPU_A4 = 0xB, ///< 4-bit Alpha + GPU_ETC1 = 0xC, ///< ETC1 texture compression + GPU_ETC1A4 = 0xD, ///< ETC1 texture compression + 4-bit Alpha } GPU_TEXCOLOR; /// Procedural texture clamp modes.