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 "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkGradientShader.h" | 10 #include "SkGradientShader.h" |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 int startItem = fTallBmps[i].fItemCnt - 10; | 84 int startItem = fTallBmps[i].fItemCnt - 10; |
85 int itemHeight = bmp.height() / fTallBmps[i].fItemCnt; | 85 int itemHeight = bmp.height() / fTallBmps[i].fItemCnt; |
86 SkIRect subRect = SkIRect::MakeLTRB(0, startItem * itemHeight, | 86 SkIRect subRect = SkIRect::MakeLTRB(0, startItem * itemHeight, |
87 bmp.width(), bmp.height()); | 87 bmp.width(), bmp.height()); |
88 SkRect dstRect = SkRect::MakeWH(SkIntToScalar(bmp.width()), 10.f * i
temHeight); | 88 SkRect dstRect = SkRect::MakeWH(SkIntToScalar(bmp.width()), 10.f * i
temHeight); |
89 SkPaint paint; | 89 SkPaint paint; |
90 paint.setFilterLevel(SkPaint::kLow_FilterLevel); | 90 paint.setFilterLevel(SkPaint::kLow_FilterLevel); |
91 canvas->drawBitmapRect(bmp, &subRect, dstRect, &paint); | 91 canvas->drawBitmapRect(bmp, &subRect, dstRect, &paint); |
92 canvas->translate(SkIntToScalar(bmp.width() + 10), 0); | 92 canvas->translate(SkIntToScalar(bmp.width() + 10), 0); |
93 } | 93 } |
94 } | |
95 | |
96 uint32_t onGetFlags() const SK_OVERRIDE { | |
97 // This GM causes issues in replay modes. | |
98 return kSkipTiled_Flag | kNoBBH_Flag | kSkipPicture_Flag; | |
99 } | 94 } |
100 | 95 |
101 private: | 96 private: |
102 struct { | 97 struct { |
103 SkBitmap fBmp; | 98 SkBitmap fBmp; |
104 int fItemCnt; | 99 int fItemCnt; |
105 } fTallBmps[8]; | 100 } fTallBmps[8]; |
106 typedef skiagm::GM INHERITED; | 101 typedef skiagm::GM INHERITED; |
107 }; | 102 }; |
108 | 103 |
109 ////////////////////////////////////////////////////////////////////////////// | 104 ////////////////////////////////////////////////////////////////////////////// |
110 | 105 |
111 DEF_GM(return SkNEW(TallStretchedBitmapsGM);) | 106 DEF_GM(return SkNEW(TallStretchedBitmapsGM);) |
112 | 107 |
OLD | NEW |