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

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

Issue 2255963002: Batched implementation of drawLattice() for GPU (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Improve bench 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
OLDNEW
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
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 * Returns the total number of rects that will be drawn.
40 */
41 int numRects() const;
42
38 private: 43 private:
39 SkTArray<SkScalar> fSrcX; 44 SkTArray<SkScalar> fSrcX;
40 SkTArray<SkScalar> fSrcY; 45 SkTArray<SkScalar> fSrcY;
41 SkTArray<SkScalar> fDstX; 46 SkTArray<SkScalar> fDstX;
42 SkTArray<SkScalar> fDstY; 47 SkTArray<SkScalar> fDstY;
43 48
44 int fCurrX; 49 int fCurrX;
45 int fCurrY; 50 int fCurrY;
46 bool fDone; 51 bool fDone;
47 }; 52 };
48 53
49 #endif 54 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698