Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: src/core/SkLatticeIter.h

Issue 1992283002: Add drawBitmapLattice() API (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rewrite picture impls Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/core/SkDevice.cpp ('k') | src/core/SkLatticeIter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkLatticeIter_DEFINED
9 #define SkLatticeIter_DEFINED
10
11 #include "SkCanvas.h"
12 #include "SkScalar.h"
13 #include "SkTArray.h"
14
15 struct SkIRect;
16 struct SkRect;
17
18 /**
19 * Disect a lattice request into an sequence of src-rect / dst-rect pairs
20 */
21 class SkLatticeIter {
22 public:
23
24 static bool Valid(int imageWidth, int imageHeight, const SkCanvas::Lattice& lattice);
25
26 SkLatticeIter(int imageWidth, int imageHeight, const SkCanvas::Lattice& latt ice,
27 const SkRect& dst);
28
29 static bool Valid(int imageWidth, int imageHeight, const SkIRect& center);
30
31 SkLatticeIter(int imageWidth, int imageHeight, const SkIRect& center, const SkRect& dst);
32
33 /**
34 * While it returns true, use src/dst to draw the image/bitmap
35 */
36 bool next(SkRect* src, SkRect* dst);
37
38 private:
39 SkTArray<SkScalar> fSrcX;
40 SkTArray<SkScalar> fSrcY;
41 SkTArray<SkScalar> fDstX;
42 SkTArray<SkScalar> fDstY;
43
44 int fCurrX;
45 int fCurrY;
46 bool fDone;
47 };
48
49 #endif
OLDNEW
« no previous file with comments | « src/core/SkDevice.cpp ('k') | src/core/SkLatticeIter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698