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" |
11 | 11 |
12 // Inspired by svg/as-border-image/svg-as-border-image.html. Draws a four-color
checker board bitmap | 12 // Inspired by svg/as-border-image/svg-as-border-image.html. Draws a four-color
checker board bitmap |
13 // such that it is stretched and repeat tiled with different filter qualities. I
t is testing whether | 13 // such that it is stretched and repeat tiled with different filter qualities. I
t is testing whether |
14 // the bmp filter respects the repeat mode at the tile seams. | 14 // the bmp filter respects the repeat mode at the tile seams. |
15 class BmpFilterQualityRepeat : public skiagm::GM { | 15 class BmpFilterQualityRepeat : public skiagm::GM { |
16 public: | 16 public: |
17 BmpFilterQualityRepeat() { this->setBGColor(sk_tool_utils::color_to_565(0xFF
CCBBAA)); } | 17 BmpFilterQualityRepeat() { this->setBGColor(0xFFCCBBAA); } |
18 | 18 |
19 protected: | 19 protected: |
20 | 20 |
21 void onOnceBeforeDraw() override { | 21 void onOnceBeforeDraw() override { |
22 fBmp.allocN32Pixels(40, 40, true); | 22 fBmp.allocN32Pixels(40, 40, true); |
23 SkCanvas canvas(fBmp); | 23 SkCanvas canvas(fBmp); |
24 SkBitmap colorBmp; | 24 SkBitmap colorBmp; |
25 colorBmp.allocN32Pixels(20, 20, true); | 25 colorBmp.allocN32Pixels(20, 20, true); |
26 colorBmp.eraseColor(0xFFFF0000); | 26 colorBmp.eraseColor(0xFFFF0000); |
27 canvas.drawBitmap(colorBmp, 0, 0); | 27 canvas.drawBitmap(colorBmp, 0, 0); |
(...skipping 16 matching lines...) Expand all Loading... |
44 const char* fName; | 44 const char* fName; |
45 } kQualities[] = { | 45 } kQualities[] = { |
46 {kNone_SkFilterQuality, "none"}, | 46 {kNone_SkFilterQuality, "none"}, |
47 {kLow_SkFilterQuality, "low"}, | 47 {kLow_SkFilterQuality, "low"}, |
48 {kMedium_SkFilterQuality, "medium"}, | 48 {kMedium_SkFilterQuality, "medium"}, |
49 {kHigh_SkFilterQuality, "high"}, | 49 {kHigh_SkFilterQuality, "high"}, |
50 }; | 50 }; |
51 | 51 |
52 for (size_t q = 0; q < SK_ARRAY_COUNT(kQualities); ++q) { | 52 for (size_t q = 0; q < SK_ARRAY_COUNT(kQualities); ++q) { |
53 SkPaint paint; | 53 SkPaint paint; |
54 sk_tool_utils::set_portable_typeface_always(&paint); | |
55 paint.setFilterQuality(kQualities[q].fQuality); | 54 paint.setFilterQuality(kQualities[q].fQuality); |
56 SkPaint bmpPaint(paint); | 55 SkPaint bmpPaint(paint); |
57 SkMatrix lm = SkMatrix::I(); | 56 SkMatrix lm = SkMatrix::I(); |
58 lm.setScaleX(2.5); | 57 lm.setScaleX(2.5); |
59 lm.setTranslateX(423); | 58 lm.setTranslateX(423); |
60 lm.setTranslateY(330); | 59 lm.setTranslateY(330); |
61 | 60 |
62 static const SkShader::TileMode kTM = SkShader::kRepeat_TileMode; | 61 static const SkShader::TileMode kTM = SkShader::kRepeat_TileMode; |
63 bmpPaint.setShader(SkShader::CreateBitmapShader(fBmp, kTM, kTM, &lm)
)->unref(); | 62 bmpPaint.setShader(SkShader::CreateBitmapShader(fBmp, kTM, kTM, &lm)
)->unref(); |
64 SkRect rect = SkRect::MakeLTRB(20, 60, 220, 210); | 63 SkRect rect = SkRect::MakeLTRB(20, 60, 220, 210); |
65 canvas->drawRect(rect, bmpPaint); | 64 canvas->drawRect(rect, bmpPaint); |
66 paint.setAntiAlias(true); | 65 paint.setAntiAlias(true); |
67 canvas->drawText(kQualities[q].fName, strlen(kQualities[q].fName), 2
0, 40, paint); | 66 canvas->drawText(kQualities[q].fName, strlen(kQualities[q].fName), 2
0, 40, paint); |
68 canvas->translate(250, 0); | 67 canvas->translate(250, 0); |
69 } | 68 } |
70 } | 69 } |
71 | 70 |
72 private: | 71 private: |
73 SkBitmap fBmp; | 72 SkBitmap fBmp; |
74 | 73 |
75 typedef skiagm::GM INHERITED; | 74 typedef skiagm::GM INHERITED; |
76 }; | 75 }; |
77 | 76 |
78 ////////////////////////////////////////////////////////////////////////////// | 77 ////////////////////////////////////////////////////////////////////////////// |
79 | 78 |
80 DEF_GM( return SkNEW(BmpFilterQualityRepeat); ) | 79 DEF_GM( return SkNEW(BmpFilterQualityRepeat); ) |
OLD | NEW |