| Index: tests/TestConfigParsing.cpp
|
| diff --git a/tests/TestConfigParsing.cpp b/tests/TestConfigParsing.cpp
|
| index 6f5c64aa2e93d9f6518e4960c0c9a9634919005f..1a7e5b94ab04f01492b8b8d806d32666f6e8c469 100644
|
| --- a/tests/TestConfigParsing.cpp
|
| +++ b/tests/TestConfigParsing.cpp
|
| @@ -123,7 +123,11 @@ DEF_TEST(ParseConfigs_DefaultConfigs, reporter) {
|
| REPORTER_ASSERT(reporter, !configs[19]->asConfigGpu());
|
| REPORTER_ASSERT(reporter, !configs[24]->asConfigGpu());
|
| REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorType() == kRGBA_F16_SkColorType);
|
| - REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace() == srgbColorSpace.get());
|
| + REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace());
|
| + REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->gammaNamed() ==
|
| + SkColorSpace::kLinear_GammaNamed);
|
| + REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->xyz() ==
|
| + srgbColorSpace->xyz());
|
| REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorType() == kN32_SkColorType);
|
| REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorSpace() == srgbColorSpace.get());
|
| REPORTER_ASSERT(reporter, configs[33]->asConfigGpu()->getContextType() ==
|
|
|