Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Unified Diff: gm/thinrects.cpp

Issue 2300623005: Replace a lot of 'static const' with 'constexpr' or 'const'. (Closed)
Patch Set: small msvc concession Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gm/texturedomaineffect.cpp ('k') | gm/thinstrokedrects.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/thinrects.cpp
diff --git a/gm/thinrects.cpp b/gm/thinrects.cpp
index a25176c4761251c7a2aa346042be73ac92f8ff8f..999028c7ec81ddfdf58d99fc0c74863324dad361 100644
--- a/gm/thinrects.cpp
+++ b/gm/thinrects.cpp
@@ -65,7 +65,7 @@ protected:
private:
static void DrawVertRects(SkCanvas* canvas, const SkPaint& p) {
- static const SkRect vertRects[] = {
+ constexpr SkRect vertRects[] = {
{ 1, 1, 5.0f, 21 }, // 4 pix wide
{ 8, 1, 10.0f, 21 }, // 2 pix wide
{ 13, 1, 14.0f, 21 }, // 1 pix wide
@@ -81,7 +81,7 @@ private:
}
static void DrawHorizRects(SkCanvas* canvas, const SkPaint& p) {
- static const SkRect horizRects[] = {
+ constexpr SkRect horizRects[] = {
{ 1, 1, 21, 5.0f }, // 4 pix high
{ 1, 8, 21, 10.0f }, // 2 pix high
{ 1, 13, 21, 14.0f }, // 1 pix high
@@ -97,7 +97,7 @@ private:
}
static void DrawSquares(SkCanvas* canvas, const SkPaint& p) {
- static const SkRect squares[] = {
+ constexpr SkRect squares[] = {
{ 1, 1, 5.0f, 5.0f }, // 4 pix
{ 8, 8, 10.0f, 10.0f }, // 2 pix
{ 13, 13, 14.0f, 14.0f }, // 1 pix
« no previous file with comments | « gm/texturedomaineffect.cpp ('k') | gm/thinstrokedrects.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698