From c5fb5ba0b1a5648dad099e5863df2278a4fe3a6c Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Thu, 29 Aug 2013 11:57:18 -0400 Subject: [PATCH] Reorder color channels to match PVRTC spec --- PVRTCEncoder/src/Pixel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVRTCEncoder/src/Pixel.h b/PVRTCEncoder/src/Pixel.h index 6e6f06c..f9ad76e 100644 --- a/PVRTCEncoder/src/Pixel.h +++ b/PVRTCEncoder/src/Pixel.h @@ -89,10 +89,10 @@ class Pixel { private: union { struct { + uint8 m_A; uint8 m_R; uint8 m_G; uint8 m_B; - uint8 m_A; }; uint8 m_Component[4]; };