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

Side by Side Diff: gm/pixelsnap.cpp

Issue 1306443004: Use static_assert instead of SK_COMPILE_ASSERT. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « gm/convex_all_line_paths.cpp ('k') | gm/variedtext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "gm.h" 8 #include "gm.h"
9 9
10 #include "SkShader.h" 10 #include "SkShader.h"
11 11
12 // This class of GMs test how edges/verts snap near rounding boundaries in devic e space without 12 // This class of GMs test how edges/verts snap near rounding boundaries in devic e space without
13 // anti-aliaing. 13 // anti-aliaing.
14 class PixelSnapGM : public skiagm::GM { 14 class PixelSnapGM : public skiagm::GM {
15 public: 15 public:
16 PixelSnapGM() {} 16 PixelSnapGM() {}
17 17
18 protected: 18 protected:
19 // kTrans should be even or checkboards wont agree in different test cases. 19 // kTrans should be even or checkboards wont agree in different test cases.
20 static const int kTrans = 14; 20 static const int kTrans = 14;
21 static const int kLabelPad = 4; 21 static const int kLabelPad = 4;
22 // The inverse of this value should be a perfect SkScalar. 22 // The inverse of this value should be a perfect SkScalar.
23 static const int kSubPixelSteps = 8; 23 static const int kSubPixelSteps = 8;
24 static const int kLabelTextSize = 9; 24 static const int kLabelTextSize = 9;
25 25
26 SK_COMPILE_ASSERT(kSubPixelSteps < 99, label_offset_too_small); 26 static_assert(kSubPixelSteps < 99, "label_offset_too_small");
27 static const int kLabelOffsetX = 2 * kLabelTextSize + kLabelPad; 27 static const int kLabelOffsetX = 2 * kLabelTextSize + kLabelPad;
28 static const int kLabelOffsetY = kLabelTextSize + kLabelPad; 28 static const int kLabelOffsetY = kLabelTextSize + kLabelPad;
29 29
30 SkISize onISize() override { 30 SkISize onISize() override {
31 return SkISize::Make((kSubPixelSteps + 1) * kTrans + kLabelOffsetX + kLa belPad, 31 return SkISize::Make((kSubPixelSteps + 1) * kTrans + kLabelOffsetX + kLa belPad,
32 (kSubPixelSteps + 1) * kTrans + kLabelOffsetY + kLa belPad); 32 (kSubPixelSteps + 1) * kTrans + kLabelOffsetY + kLa belPad);
33 } 33 }
34 34
35 void onDraw(SkCanvas* canvas) override { 35 void onDraw(SkCanvas* canvas) override {
36 SkPaint bgPaint; 36 SkPaint bgPaint;
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 172
173 private: 173 private:
174 typedef PixelSnapGM INHERITED; 174 typedef PixelSnapGM INHERITED;
175 }; 175 };
176 176
177 ////////////////////////////////////////////////////////////////////////////// 177 //////////////////////////////////////////////////////////////////////////////
178 DEF_GM( return SkNEW(PointSnapGM); ) 178 DEF_GM( return SkNEW(PointSnapGM); )
179 DEF_GM( return SkNEW(LineSnapGM); ) 179 DEF_GM( return SkNEW(LineSnapGM); )
180 DEF_GM( return SkNEW(RectSnapGM); ) 180 DEF_GM( return SkNEW(RectSnapGM); )
181 DEF_GM( return SkNEW(ComboSnapGM); ) 181 DEF_GM( return SkNEW(ComboSnapGM); )
OLDNEW
« no previous file with comments | « gm/convex_all_line_paths.cpp ('k') | gm/variedtext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698