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;
     }