commit | ac856c97acc84dcb54d9cdb068ec8a02b8869647 | [log] [tgz] |
---|---|---|
author | bsalomon <bsalomon@google.com> | Thu Aug 27 06:30:17 2015 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Thu Aug 27 06:30:17 2015 -0700 |
tree | 6ae028321a4e2f179918390a03788f3e598545e5 | |
parent | a04c650459280363454da3b43ae910b8593434c8 [diff] [blame] |
Remove GrStagedProcessor, remove the word Stage as it applies to FPs Committed: https://skia.googlesource.com/skia/+/24243446cdf7b7e4e132c2a0c387c7723777e0c7 Review URL: https://codereview.chromium.org/1307223004
diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp index 4b3bcdf..d5251ba 100644 --- a/tests/GLProgramsTest.cpp +++ b/tests/GLProgramsTest.cpp
@@ -148,9 +148,9 @@ // finally add the stage to the correct pipeline in the drawstate if (s < numColorProcs) { - pipelineBuilder->addColorProcessor(fp); + pipelineBuilder->addColorFragmentProcessor(fp); } else { - pipelineBuilder->addCoverageProcessor(fp); + pipelineBuilder->addCoverageFragmentProcessor(fp); } ++s; }