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 "SkImageSource.h" | 8 #include "SkImageSource.h" |
9 #include "SkSurface.h" | 9 #include "SkSurface.h" |
10 #include "SkTileImageFilter.h" | 10 #include "SkTileImageFilter.h" |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 } | 49 } |
50 | 50 |
51 void onDraw(SkCanvas* canvas) override { | 51 void onDraw(SkCanvas* canvas) override { |
52 canvas->clear(SK_ColorBLACK); | 52 canvas->clear(SK_ColorBLACK); |
53 | 53 |
54 { | 54 { |
55 SkPaint p; | 55 SkPaint p; |
56 | 56 |
57 SkRect bound = SkRect::MakeWH(SkIntToScalar(kWidth), SkIntToScalar(k
Height)); | 57 SkRect bound = SkRect::MakeWH(SkIntToScalar(kWidth), SkIntToScalar(k
Height)); |
58 SkAutoTUnref<SkImageFilter> imageSource(SkImageSource::Create(fRedIm
age)); | 58 SkAutoTUnref<SkImageFilter> imageSource(SkImageSource::Create(fRedIm
age)); |
59 SkAutoTUnref<SkImageFilter> tif(SkTileImageFilter::Create( | 59 SkAutoTUnref<SkTileImageFilter> tif(SkTileImageFilter::Create( |
60 SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)), | 60 SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)), |
61 SkRect::MakeWH(SkIntToScalar(kWidth), SkIntToScalar(
kHeight)), | 61 SkRect::MakeWH(SkIntToScalar(kWidth), SkIntToScalar(
kHeight)), |
62 imageSource)); | 62 imageSource)); |
63 p.setImageFilter(tif); | 63 p.setImageFilter(tif); |
64 | 64 |
65 canvas->saveLayer(&bound, &p); | 65 canvas->saveLayer(&bound, &p); |
66 canvas->restore(); | 66 canvas->restore(); |
67 } | 67 } |
68 | 68 |
69 { | 69 { |
70 SkPaint p2; | 70 SkPaint p2; |
71 | 71 |
72 SkRect bound2 = SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)); | 72 SkRect bound2 = SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)); |
73 | 73 |
74 SkAutoTUnref<SkImageFilter> tif2(SkTileImageFilter::Create( | 74 SkAutoTUnref<SkTileImageFilter> tif2(SkTileImageFilter::Create( |
75 SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)), | 75 SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)), |
76 SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)), | 76 SkRect::MakeWH(SkIntToScalar(kBitmapSize), SkIntToSc
alar(kBitmapSize)), |
77 nullptr)); | 77 nullptr)); |
78 p2.setImageFilter(tif2); | 78 p2.setImageFilter(tif2); |
79 | 79 |
80 canvas->translate(320, 320); | 80 canvas->translate(320, 320); |
81 canvas->saveLayer(&bound2, &p2); | 81 canvas->saveLayer(&bound2, &p2); |
82 canvas->setMatrix(SkMatrix::I()); | 82 canvas->setMatrix(SkMatrix::I()); |
83 | 83 |
84 SkRect bound3 = SkRect::MakeXYWH(320, 320, | 84 SkRect bound3 = SkRect::MakeXYWH(320, 320, |
(...skipping 13 matching lines...) Expand all Loading... |
98 SkAutoTUnref<SkImage> fRedImage; | 98 SkAutoTUnref<SkImage> fRedImage; |
99 SkAutoTUnref<SkImage> fGreenImage; | 99 SkAutoTUnref<SkImage> fGreenImage; |
100 | 100 |
101 typedef GM INHERITED; | 101 typedef GM INHERITED; |
102 }; | 102 }; |
103 | 103 |
104 ////////////////////////////////////////////////////////////////////////////// | 104 ////////////////////////////////////////////////////////////////////////////// |
105 | 105 |
106 DEF_GM(return new BigTileImageFilterGM;) | 106 DEF_GM(return new BigTileImageFilterGM;) |
107 } | 107 } |
OLD | NEW |