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 #ifndef SkLatticeIter_DEFINED | 8 #ifndef SkLatticeIter_DEFINED |
9 #define SkLatticeIter_DEFINED | 9 #define SkLatticeIter_DEFINED |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 static bool Valid(int imageWidth, int imageHeight, const SkIRect& center); | 29 static bool Valid(int imageWidth, int imageHeight, const SkIRect& center); |
30 | 30 |
31 SkLatticeIter(int imageWidth, int imageHeight, const SkIRect& center, const
SkRect& dst); | 31 SkLatticeIter(int imageWidth, int imageHeight, const SkIRect& center, const
SkRect& dst); |
32 | 32 |
33 /** | 33 /** |
34 * While it returns true, use src/dst to draw the image/bitmap | 34 * While it returns true, use src/dst to draw the image/bitmap |
35 */ | 35 */ |
36 bool next(SkRect* src, SkRect* dst); | 36 bool next(SkRect* src, SkRect* dst); |
37 | 37 |
| 38 /** |
| 39 * Apply a matrix to the dst points. |
| 40 */ |
| 41 void mapDstScaleTranslate(const SkMatrix& matrix); |
| 42 |
| 43 /** |
| 44 * Returns the total number of rects that will be drawn. |
| 45 */ |
| 46 int numRects() const { |
| 47 return fNumRects; |
| 48 } |
| 49 |
38 private: | 50 private: |
39 SkTArray<SkScalar> fSrcX; | 51 SkTArray<SkScalar> fSrcX; |
40 SkTArray<SkScalar> fSrcY; | 52 SkTArray<SkScalar> fSrcY; |
41 SkTArray<SkScalar> fDstX; | 53 SkTArray<SkScalar> fDstX; |
42 SkTArray<SkScalar> fDstY; | 54 SkTArray<SkScalar> fDstY; |
43 | 55 |
44 int fCurrX; | 56 int fCurrX; |
45 int fCurrY; | 57 int fCurrY; |
46 bool fDone; | 58 bool fDone; |
| 59 int fNumRects; |
47 }; | 60 }; |
48 | 61 |
49 #endif | 62 #endif |
OLD | NEW |