aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/batches
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-08-19 14:01:42 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-19 14:01:42 -0700
commit3a30cc1cbb2f42bcbd0695cb994a5f1a52754a89 (patch)
tree9f44fc97a6ffe00f3733c42878653e4380407d7c /src/gpu/batches
parentab42ec79d5dbf38b81394c55670b495cdf78b243 (diff)
Thou shalt use override consistently.
TBR=herb@google.com BUG=skia: Review URL: https://codereview.chromium.org/1285973006
Diffstat (limited to 'src/gpu/batches')
-rw-r--r--src/gpu/batches/GrDrawPathBatch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/batches/GrDrawPathBatch.h b/src/gpu/batches/GrDrawPathBatch.h
index e60a6602f0..e8349d1ac7 100644
--- a/src/gpu/batches/GrDrawPathBatch.h
+++ b/src/gpu/batches/GrDrawPathBatch.h
@@ -29,11 +29,11 @@ public:
return string;
}
- virtual void getInvariantOutputColor(GrInitInvariantOutput* out) const {
+ void getInvariantOutputColor(GrInitInvariantOutput* out) const override {
fPrimitiveProcessor->getInvariantOutputColor(out);
}
- virtual void getInvariantOutputCoverage(GrInitInvariantOutput* out) const {
+ void getInvariantOutputCoverage(GrInitInvariantOutput* out) const override {
fPrimitiveProcessor->getInvariantOutputCoverage(out);
}
@@ -49,7 +49,7 @@ private:
this->initClassID<GrDrawPathBatch>();
}
- virtual void initBatchTracker(const GrPipelineOptimizations& opts) {
+ void initBatchTracker(const GrPipelineOptimizations& opts) override {
fPrimitiveProcessor->initBatchTracker(this->tracker(), opts);
}