aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPipelineBuilder.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-04-04 15:13:25 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-04-04 19:46:18 +0000
commite14bd80db048277daa3db28496310e1863b5b7a9 (patch)
tree7da5f6aa72b4b884476f46cc4cebe2a9fa3274c4 /src/gpu/GrPipelineBuilder.h
parent9e4d51126f60264f53fbf841ef97092803e88374 (diff)
Move GrPipelineBuilder into GrRenderTargetContext::addLegacyDrawOp
This makes the legacy code use GrProcessorSet::Analysis in the same manner as the non-GrLegacyMeshDrawOps which enables changes to how analysis works. Change-Id: I8171e285ac8930beb3ac33cd3c4ee88f217b9e40 Reviewed-on: https://skia-review.googlesource.com/11205 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'src/gpu/GrPipelineBuilder.h')
-rw-r--r--src/gpu/GrPipelineBuilder.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gpu/GrPipelineBuilder.h b/src/gpu/GrPipelineBuilder.h
index 7451b655b1..94e07e6cd8 100644
--- a/src/gpu/GrPipelineBuilder.h
+++ b/src/gpu/GrPipelineBuilder.h
@@ -63,6 +63,14 @@ public:
const GrProcessorSet& processors() const { return fProcessors; }
+ void analyzeAndEliminateFragmentProcessors(GrProcessorSet::Analysis* analysis,
+ const GrProcessorAnalysisColor& colorInput,
+ const GrProcessorAnalysisCoverage coverageInput,
+ const GrAppliedClip* clip, const GrCaps& caps) {
+ fProcessors.analyzeAndEliminateFragmentProcessors(analysis, colorInput, coverageInput, clip,
+ caps);
+ }
+
/// @}