mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-23 12:13:40 +00:00
Reorder color channels to match PVRTC spec
This commit is contained in:
parent
53e7879742
commit
c5fb5ba0b1
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue