From b8e155e11cb8f844afc95ce7cff19e7a4f90fe4d Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Thu, 5 Sep 2013 14:49:08 -0400 Subject: [PATCH] Switch red and blue channels in our decompressor test. --- PVRTCEncoder/test/DecompressorTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVRTCEncoder/test/DecompressorTest.cpp b/PVRTCEncoder/test/DecompressorTest.cpp index 721509c..7066e11 100644 --- a/PVRTCEncoder/test/DecompressorTest.cpp +++ b/PVRTCEncoder/test/DecompressorTest.cpp @@ -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(outData); - EXPECT_EQ(PixelPrinter(pixelData[j*kWidth + i]), PixelPrinter(0xFF808081)); + EXPECT_EQ(PixelPrinter(pixelData[j*kWidth + i]), PixelPrinter(0xFF818080)); } } }