aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/subset
diff options
context:
space:
mode:
Diffstat (limited to 'bench/subset')
-rw-r--r--bench/subset/SubsetSingleBench.cpp2
-rw-r--r--bench/subset/SubsetSingleBench.h2
-rw-r--r--bench/subset/SubsetTranslateBench.cpp2
-rw-r--r--bench/subset/SubsetTranslateBench.h2
-rw-r--r--bench/subset/SubsetZoomBench.cpp2
-rw-r--r--bench/subset/SubsetZoomBench.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/bench/subset/SubsetSingleBench.cpp b/bench/subset/SubsetSingleBench.cpp
index e409cf7ed8..232c159a0b 100644
--- a/bench/subset/SubsetSingleBench.cpp
+++ b/bench/subset/SubsetSingleBench.cpp
@@ -57,7 +57,7 @@ bool SubsetSingleBench::isSuitableFor(Backend backend) {
return kNonRendering_Backend == backend;
}
-void SubsetSingleBench::onDraw(const int n, SkCanvas* canvas) {
+void SubsetSingleBench::onDraw(int n, SkCanvas* canvas) {
// When the color type is kIndex8, we will need to store the color table. If it is
// used, it will be initialized by the codec.
int colorCount;
diff --git a/bench/subset/SubsetSingleBench.h b/bench/subset/SubsetSingleBench.h
index 1484a51258..62e281ad67 100644
--- a/bench/subset/SubsetSingleBench.h
+++ b/bench/subset/SubsetSingleBench.h
@@ -31,7 +31,7 @@ public:
protected:
const char* onGetName() override;
bool isSuitableFor(Backend backend) override;
- void onDraw(const int n, SkCanvas* canvas) override;
+ void onDraw(int n, SkCanvas* canvas) override;
private:
SkString fName;
diff --git a/bench/subset/SubsetTranslateBench.cpp b/bench/subset/SubsetTranslateBench.cpp
index a5c4d46655..8f29ba8fa0 100644
--- a/bench/subset/SubsetTranslateBench.cpp
+++ b/bench/subset/SubsetTranslateBench.cpp
@@ -53,7 +53,7 @@ bool SubsetTranslateBench::isSuitableFor(Backend backend) {
return kNonRendering_Backend == backend;
}
-void SubsetTranslateBench::onDraw(const int n, SkCanvas* canvas) {
+void SubsetTranslateBench::onDraw(int n, SkCanvas* canvas) {
// When the color type is kIndex8, we will need to store the color table. If it is
// used, it will be initialized by the codec.
int colorCount;
diff --git a/bench/subset/SubsetTranslateBench.h b/bench/subset/SubsetTranslateBench.h
index c7c6febbcb..298732c851 100644
--- a/bench/subset/SubsetTranslateBench.h
+++ b/bench/subset/SubsetTranslateBench.h
@@ -29,7 +29,7 @@ public:
protected:
const char* onGetName() override;
bool isSuitableFor(Backend backend) override;
- void onDraw(const int n, SkCanvas* canvas) override;
+ void onDraw(int n, SkCanvas* canvas) override;
private:
SkString fName;
diff --git a/bench/subset/SubsetZoomBench.cpp b/bench/subset/SubsetZoomBench.cpp
index 869e93043d..ffd86703ec 100644
--- a/bench/subset/SubsetZoomBench.cpp
+++ b/bench/subset/SubsetZoomBench.cpp
@@ -53,7 +53,7 @@ bool SubsetZoomBench::isSuitableFor(Backend backend) {
return kNonRendering_Backend == backend;
}
-void SubsetZoomBench::onDraw(const int n, SkCanvas* canvas) {
+void SubsetZoomBench::onDraw(int n, SkCanvas* canvas) {
// When the color type is kIndex8, we will need to store the color table. If it is
// used, it will be initialized by the codec.
int colorCount;
diff --git a/bench/subset/SubsetZoomBench.h b/bench/subset/SubsetZoomBench.h
index 6a8f62de46..7fba4af940 100644
--- a/bench/subset/SubsetZoomBench.h
+++ b/bench/subset/SubsetZoomBench.h
@@ -29,7 +29,7 @@ public:
protected:
const char* onGetName() override;
bool isSuitableFor(Backend backend) override;
- void onDraw(const int n, SkCanvas* canvas) override;
+ void onDraw(int n, SkCanvas* canvas) override;
private:
SkString fName;