OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 #include "SkImageFilter.h" | 9 #include "SkImageFilter.h" |
10 #include "SkRandom.h" | 10 #include "SkRandom.h" |
11 | 11 |
12 #define WIDTH 640 | 12 #define WIDTH 640 |
13 #define HEIGHT 480 | 13 #define HEIGHT 480 |
14 | 14 |
15 #define RESIZE_FACTOR SkIntToScalar(2) | 15 #define RESIZE_FACTOR SkIntToScalar(2) |
16 | 16 |
17 namespace skiagm { | 17 namespace skiagm { |
18 | 18 |
19 class ImageResizeTiledGM : public GM { | 19 class ImageResizeTiledGM : public GM { |
20 public: | 20 public: |
21 ImageResizeTiledGM() { | 21 ImageResizeTiledGM() { |
22 } | 22 } |
23 | 23 |
24 protected: | 24 protected: |
25 | 25 |
26 SkString onShortName() SK_OVERRIDE { | 26 SkString onShortName() override { |
27 return SkString("imageresizetiled"); | 27 return SkString("imageresizetiled"); |
28 } | 28 } |
29 | 29 |
30 SkISize onISize() SK_OVERRIDE { | 30 SkISize onISize() override { |
31 return SkISize::Make(WIDTH, HEIGHT); | 31 return SkISize::Make(WIDTH, HEIGHT); |
32 } | 32 } |
33 | 33 |
34 void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 34 void onDraw(SkCanvas* canvas) override { |
35 SkPaint paint; | 35 SkPaint paint; |
36 SkMatrix matrix; | 36 SkMatrix matrix; |
37 matrix.setScale(RESIZE_FACTOR, RESIZE_FACTOR); | 37 matrix.setScale(RESIZE_FACTOR, RESIZE_FACTOR); |
38 SkAutoTUnref<SkImageFilter> imageFilter( | 38 SkAutoTUnref<SkImageFilter> imageFilter( |
39 SkImageFilter::CreateMatrixFilter(matrix, kNone_SkFilterQuality)); | 39 SkImageFilter::CreateMatrixFilter(matrix, kNone_SkFilterQuality)); |
40 paint.setImageFilter(imageFilter.get()); | 40 paint.setImageFilter(imageFilter.get()); |
41 const SkScalar tile_size = SkIntToScalar(100); | 41 const SkScalar tile_size = SkIntToScalar(100); |
42 SkRect bounds; | 42 SkRect bounds; |
43 canvas->getClipBounds(&bounds); | 43 canvas->getClipBounds(&bounds); |
44 for (SkScalar y = 0; y < HEIGHT; y += tile_size) { | 44 for (SkScalar y = 0; y < HEIGHT; y += tile_size) { |
(...skipping 27 matching lines...) Expand all Loading... |
72 | 72 |
73 private: | 73 private: |
74 typedef GM INHERITED; | 74 typedef GM INHERITED; |
75 }; | 75 }; |
76 | 76 |
77 ////////////////////////////////////////////////////////////////////////////// | 77 ////////////////////////////////////////////////////////////////////////////// |
78 | 78 |
79 DEF_GM(return new ImageResizeTiledGM(); ) | 79 DEF_GM(return new ImageResizeTiledGM(); ) |
80 | 80 |
81 } | 81 } |
OLD | NEW |