| Index: tests/GpuColorFilterTest.cpp
|
| diff --git a/tests/GpuColorFilterTest.cpp b/tests/GpuColorFilterTest.cpp
|
| index a61fe0b545f0ba41de7d14c1ff67f8ffe9d4f5e4..90f22208d77921fc9b2a38b91804aab530ab5814 100644
|
| --- a/tests/GpuColorFilterTest.cpp
|
| +++ b/tests/GpuColorFilterTest.cpp
|
| @@ -100,13 +100,11 @@ static void test_getConstantColorComponents(skiatest::Reporter* reporter, GrCont
|
| SkAutoTUnref<SkColorFilter> cf(SkColorFilter::CreateModeFilter(test.filterColor, test.filterMode));
|
| SkAutoTUnref<GrFragmentProcessor> effect(cf->asFragmentProcessor(grContext));
|
| GrProcessor::InvariantOutput inout;
|
| - inout.fColor = test.inputColor;
|
| - inout.fValidFlags = test.inputComponents;
|
| - inout.fIsSingleComponent = false;
|
| + inout.setToOther(test.inputComponents, test.inputColor);
|
| effect->computeInvariantOutput(&inout);
|
|
|
| - REPORTER_ASSERT(reporter, filterColor(inout.fColor, inout.fValidFlags) == test.outputColor);
|
| - REPORTER_ASSERT(reporter, test.outputComponents == inout.fValidFlags);
|
| + REPORTER_ASSERT(reporter, filterColor(inout.color(), inout.validFlags()) == test.outputColor);
|
| + REPORTER_ASSERT(reporter, test.outputComponents == inout.validFlags());
|
| }
|
| }
|
|
|
|
|