From ff2103200bad7abcf8929ae22ac78a9f4f725142 Mon Sep 17 00:00:00 2001 From: ethannicholas Date: Tue, 24 Nov 2015 12:10:10 -0800 Subject: New API for computing optimization invariants. Review URL: https://codereview.chromium.org/1467553002 --- src/gpu/batches/GrTessellatingPathRenderer.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/gpu/batches/GrTessellatingPathRenderer.cpp') diff --git a/src/gpu/batches/GrTessellatingPathRenderer.cpp b/src/gpu/batches/GrTessellatingPathRenderer.cpp index a3a888302a..8cd411a49f 100644 --- a/src/gpu/batches/GrTessellatingPathRenderer.cpp +++ b/src/gpu/batches/GrTessellatingPathRenderer.cpp @@ -1397,22 +1397,22 @@ public: const char* name() const override { return "TessellatingPathBatch"; } - void getInvariantOutputColor(GrInitInvariantOutput* out) const override { - out->setKnownFourComponents(fColor); - } - - void getInvariantOutputCoverage(GrInitInvariantOutput* out) const override { - out->setUnknownSingleComponent(); + void computePipelineOptimizations(GrInitInvariantOutput* color, + GrInitInvariantOutput* coverage, + GrBatchToXPOverrides* overrides) const override { + color->setKnownFourComponents(fColor); + coverage->setUnknownSingleComponent(); + overrides->fUsePLSDstRead = false; } private: - void initBatchTracker(const GrPipelineOptimizations& opt) override { + void initBatchTracker(const GrXPOverridesForBatch& overrides) override { // Handle any color overrides - if (!opt.readsColor()) { + if (!overrides.readsColor()) { fColor = GrColor_ILLEGAL; } - opt.getOverrideColorIfSet(&fColor); - fPipelineInfo = opt; + overrides.getOverrideColorIfSet(&fColor); + fPipelineInfo = overrides; } int tessellate(GrUniqueKey* key, @@ -1621,7 +1621,7 @@ private: GrStrokeInfo fStroke; SkMatrix fViewMatrix; SkRect fClipBounds; // in source space - GrPipelineOptimizations fPipelineInfo; + GrXPOverridesForBatch fPipelineInfo; typedef GrVertexBatch INHERITED; }; -- cgit v1.2.3