OLD | NEW |
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" |
(...skipping 18 matching lines...) Expand all Loading... |
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; |
37 bgPaint.setShader( | 37 bgPaint.setShader( |
38 sk_tool_utils::create_checkerboard_shader( | 38 sk_tool_utils::create_checkerboard_shader( |
39 sk_tool_utils::color_to_565(0xFFAAAAAA), | 39 sk_tool_utils::color_to_565(0xFFAAAAAA), |
40 sk_tool_utils::color_to_565(0xFF777777), 1)); | 40 sk_tool_utils::color_to_565(0xFF777777), 1)); |
41 canvas->drawPaint(bgPaint); | 41 canvas->drawPaint(bgPaint); |
42 | 42 |
43 SkString offset; | 43 SkString offset; |
44 SkPaint labelPaint; | 44 SkPaint labelPaint; |
45 labelPaint.setAntiAlias(true); | 45 labelPaint.setAntiAlias(true); |
46 labelPaint.setColor(SK_ColorWHITE); | 46 labelPaint.setColor(SK_ColorWHITE); |
47 labelPaint.setTextSize(SkIntToScalar(kLabelTextSize)); | 47 labelPaint.setTextSize(SkIntToScalar(kLabelTextSize)); |
48 sk_tool_utils::set_portable_typeface(&labelPaint); | 48 sk_tool_utils::set_portable_typeface(&labelPaint); |
49 SkPaint linePaint; | 49 SkPaint linePaint; |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 | 172 |
173 private: | 173 private: |
174 typedef PixelSnapGM INHERITED; | 174 typedef PixelSnapGM INHERITED; |
175 }; | 175 }; |
176 | 176 |
177 ////////////////////////////////////////////////////////////////////////////// | 177 ////////////////////////////////////////////////////////////////////////////// |
178 DEF_GM(return new PointSnapGM;) | 178 DEF_GM(return new PointSnapGM;) |
179 DEF_GM(return new LineSnapGM;) | 179 DEF_GM(return new LineSnapGM;) |
180 DEF_GM(return new RectSnapGM;) | 180 DEF_GM(return new RectSnapGM;) |
181 DEF_GM(return new ComboSnapGM;) | 181 DEF_GM(return new ComboSnapGM;) |
OLD | NEW |