mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-28 03:44:18 +01:00
Switch red and blue channels in our decompressor test.
This commit is contained in:
parent
7b72a84d87
commit
b8e155e11c
@ -99,7 +99,7 @@ TEST(Decompressor, DecompressGray) {
|
||||
for(int i = 0; i < kWidth; i++) {
|
||||
for(int j = 0; j < kHeight; j++) {
|
||||
const uint32 *pixelData = reinterpret_cast<const uint32 *>(outData);
|
||||
EXPECT_EQ(PixelPrinter(pixelData[j*kWidth + i]), PixelPrinter(0xFF808081));
|
||||
EXPECT_EQ(PixelPrinter(pixelData[j*kWidth + i]), PixelPrinter(0xFF818080));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user