summaryrefslogtreecommitdiffstats
path: root/cc/resources/platform_color_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cc/resources/platform_color_unittest.cc')
-rw-r--r--cc/resources/platform_color_unittest.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/cc/resources/platform_color_unittest.cc b/cc/resources/platform_color_unittest.cc
index 49c8353..83f65b6 100644
--- a/cc/resources/platform_color_unittest.cc
+++ b/cc/resources/platform_color_unittest.cc
@@ -21,21 +21,17 @@ TEST(PlatformColorTest, SameComponentOrder) {
case RGBA_8888:
EXPECT_EQ(rgba, PlatformColor::SameComponentOrder(format));
break;
- case RGBA_4444:
- // RGBA_4444 indicates the number of bytes per pixel but the format
- // doesn't actually imply RGBA ordering. It uses the native ordering.
- EXPECT_EQ(true, PlatformColor::SameComponentOrder(format));
- break;
case BGRA_8888:
EXPECT_NE(rgba, PlatformColor::SameComponentOrder(format));
break;
+ // The following formats are not platform colors.
case ALPHA_8:
case LUMINANCE_8:
case RGB_565:
+ case RGBA_4444:
case ETC1:
case RED_8:
case LUMINANCE_F16:
- EXPECT_FALSE(PlatformColor::SameComponentOrder(format));
break;
}
}