aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrDrawAtlasOp.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-01-04 10:44:42 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-04 16:37:18 +0000
commit8c852be264d003b2e610c5b8634bc0f81c46bbba (patch)
treed67ab88ace56ed44725325310325428ffdb09437 /src/gpu/ops/GrDrawAtlasOp.h
parent1e854246e6ce431838de882116b86f085eb7b08e (diff)
Removing tracking of whether GP/FP coverage calculations are used by XP.
Remove readsCoverage from GrPipelineOptimizations Remove kNone from GrDefaultGeoProc::Coverage Remove kIgnoreCoverage from GrXferProcessor::OptFlags Remove GrPipeline::fIgnoresCoverage Change-Id: I8f0c9337ee98b9c77af1e9a8a184519ce63822d4 Reviewed-on: https://skia-review.googlesource.com/6552 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'src/gpu/ops/GrDrawAtlasOp.h')
-rw-r--r--src/gpu/ops/GrDrawAtlasOp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gpu/ops/GrDrawAtlasOp.h b/src/gpu/ops/GrDrawAtlasOp.h
index 60158e0c6a..8251386eab 100644
--- a/src/gpu/ops/GrDrawAtlasOp.h
+++ b/src/gpu/ops/GrDrawAtlasOp.h
@@ -57,7 +57,6 @@ private:
const SkMatrix& viewMatrix() const { return fViewMatrix; }
bool hasColors() const { return fHasColors; }
int quadCount() const { return fQuadCount; }
- bool coverageIgnored() const { return fCoverageIgnored; }
bool onCombineIfPossible(GrOp* t, const GrCaps&) override;
@@ -72,7 +71,6 @@ private:
GrColor fColor;
int fQuadCount;
bool fColorIgnored;
- bool fCoverageIgnored;
bool fHasColors;
typedef GrMeshDrawOp INHERITED;