| 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
|
|
|