From ccb2e384a036f29d989d3c1468f879324e81a678 Mon Sep 17 00:00:00 2001 From: egdaniel Date: Mon, 13 Oct 2014 12:53:46 -0700 Subject: Create helper functions to use in computeInvariantOutput calls BUG=skia: Review URL: https://codereview.chromium.org/643743003 --- tests/GpuColorFilterTest.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'tests/GpuColorFilterTest.cpp') diff --git a/tests/GpuColorFilterTest.cpp b/tests/GpuColorFilterTest.cpp index a61fe0b545..90f22208d7 100644 --- a/tests/GpuColorFilterTest.cpp +++ b/tests/GpuColorFilterTest.cpp @@ -100,13 +100,11 @@ static void test_getConstantColorComponents(skiatest::Reporter* reporter, GrCont SkAutoTUnref cf(SkColorFilter::CreateModeFilter(test.filterColor, test.filterMode)); SkAutoTUnref 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()); } } -- cgit v1.2.3