Reorder color channels to match PVRTC spec

This commit is contained in:
Pavel Krajcevski 2013-08-29 11:57:18 -04:00
parent 53e7879742
commit c5fb5ba0b1

View file

@ -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];
};