diff options
author | Chris Dalton <csmartdalton@google.com> | 2018-04-27 13:05:19 -0600 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-04-27 20:27:18 +0000 |
commit | 1dec19a29eab9f861cf8a1df5ff74e7879efb14d (patch) | |
tree | 89d0aca2b1102cba98bf7cba4c21699bbae05180 /src/gpu/ccpr | |
parent | cb31248132cc5ab08b0333b1ce0ab189dc69d155 (diff) |
ccpr: Remove canMakeClipProcessor
Now that conics are supported we can make a ccpr clip FP out of any
path. No need to ask. And the 'fDrawCachablePaths' check was redundant
since clip paths are always volatile anyway (for now).
Bug: skia:
Change-Id: I670474a3b91f1c252ed323eb627bbb109788e6b8
Reviewed-on: https://skia-review.googlesource.com/124362
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'src/gpu/ccpr')
-rw-r--r-- | src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp | 8 | ||||
-rw-r--r-- | src/gpu/ccpr/GrCoverageCountingPathRenderer.h | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp b/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp index b6f5770b35..fa08af5dca 100644 --- a/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp +++ b/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp @@ -185,13 +185,6 @@ void CCPR::DrawPathsOp::wasRecorded(GrRenderTargetOpList* opList) { fOwningRTPendingPaths->fDrawOps.addToTail(this); } -bool GrCoverageCountingPathRenderer::canMakeClipProcessor(const SkPath& deviceSpacePath) const { - if (!fDrawCachablePaths && !deviceSpacePath.isVolatile()) { - return false; - } - return true; -} - std::unique_ptr<GrFragmentProcessor> GrCoverageCountingPathRenderer::makeClipProcessor( GrProxyProvider* proxyProvider, uint32_t opListID, const SkPath& deviceSpacePath, const SkIRect& accessRect, @@ -199,7 +192,6 @@ std::unique_ptr<GrFragmentProcessor> GrCoverageCountingPathRenderer::makeClipPro using MustCheckBounds = GrCCClipProcessor::MustCheckBounds; SkASSERT(!fFlushing); - SkASSERT(this->canMakeClipProcessor(deviceSpacePath)); ClipPath& clipPath = fRTPendingPathsMap[opListID].fClipPaths[deviceSpacePath.getGenerationID()]; if (clipPath.isUninitialized()) { diff --git a/src/gpu/ccpr/GrCoverageCountingPathRenderer.h b/src/gpu/ccpr/GrCoverageCountingPathRenderer.h index ba214f5843..da3c2e7086 100644 --- a/src/gpu/ccpr/GrCoverageCountingPathRenderer.h +++ b/src/gpu/ccpr/GrCoverageCountingPathRenderer.h @@ -183,8 +183,6 @@ public: SkDEBUGCODE(bool fHasAtlasTransform = false); }; - bool canMakeClipProcessor(const SkPath& deviceSpacePath) const; - std::unique_ptr<GrFragmentProcessor> makeClipProcessor(GrProxyProvider*, uint32_t oplistID, const SkPath& deviceSpacePath, const SkIRect& accessRect, |