aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/GpuColorFilterTest.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/GpuColorFilterTest.cpp b/tests/GpuColorFilterTest.cpp
index 202756b0e6..a61fe0b545 100644
--- a/tests/GpuColorFilterTest.cpp
+++ b/tests/GpuColorFilterTest.cpp
@@ -99,12 +99,14 @@ static void test_getConstantColorComponents(skiatest::Reporter* reporter, GrCont
const GetConstantComponentTestCase& test = filterTests[i];
SkAutoTUnref<SkColorFilter> cf(SkColorFilter::CreateModeFilter(test.filterColor, test.filterMode));
SkAutoTUnref<GrFragmentProcessor> effect(cf->asFragmentProcessor(grContext));
- GrColor color = test.inputColor;
- uint32_t components = test.inputComponents;
- effect->getConstantColorComponents(&color, &components);
-
- REPORTER_ASSERT(reporter, filterColor(color, components) == test.outputColor);
- REPORTER_ASSERT(reporter, test.outputComponents == components);
+ GrProcessor::InvariantOutput inout;
+ inout.fColor = test.inputColor;
+ inout.fValidFlags = test.inputComponents;
+ inout.fIsSingleComponent = false;
+ effect->computeInvariantOutput(&inout);
+
+ REPORTER_ASSERT(reporter, filterColor(inout.fColor, inout.fValidFlags) == test.outputColor);
+ REPORTER_ASSERT(reporter, test.outputComponents == inout.fValidFlags);
}
}