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

Side by Side Diff: src/gpu/batches/GrAAFillRectBatch.h

Issue 1424313010: Separate out natively-texture image/bmp draws from cached-as-texture image/bmp draws (Closed) Base URL: https://skia.googlesource.com/skia.git@const
Patch Set: update Created 5 years, 1 month 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/gpu/SkGrPriv.h ('k') | src/gpu/batches/GrAAFillRectBatch.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 GrAAFillRectBatch_DEFINED 8 #ifndef GrAAFillRectBatch_DEFINED
9 #define GrAAFillRectBatch_DEFINED 9 #define GrAAFillRectBatch_DEFINED
10 10
11 #include "GrColor.h" 11 #include "GrColor.h"
12 12
13 class GrBatch; 13 class GrBatch;
14 class GrDrawBatch; 14 class GrDrawBatch;
15 class SkMatrix; 15 class SkMatrix;
16 struct SkRect; 16 struct SkRect;
17 17
18 namespace GrAAFillRectBatch { 18 namespace GrAAFillRectBatch {
19 GrDrawBatch* Create(GrColor color, 19 GrDrawBatch* Create(GrColor color,
20 const SkMatrix& viewMatrix, 20 const SkMatrix& viewMatrix,
21 const SkRect& rect, 21 const SkRect& rect,
22 const SkRect& devRect); 22 const SkRect& devRect);
23 23
24 GrDrawBatch* Create(GrColor color, 24 GrDrawBatch* Create(GrColor color,
25 const SkMatrix& viewMatrix, 25 const SkMatrix& viewMatrix,
26 const SkMatrix& localMatrix, 26 const SkMatrix& localMatrix,
27 const SkRect& rect);
28
29 GrDrawBatch* Create(GrColor color,
30 const SkMatrix& viewMatrix,
31 const SkMatrix& localMatrix,
27 const SkRect& rect, 32 const SkRect& rect,
28 const SkRect& devRect); 33 const SkRect& devRect);
29 34
35 GrDrawBatch* CreateWithLocalRect(GrColor color,
36 const SkMatrix& viewMatrix,
37 const SkRect& rect,
38 const SkRect& localRect);
39
30 void Append(GrBatch*, 40 void Append(GrBatch*,
31 GrColor, 41 GrColor,
32 const SkMatrix& viewMatrix, 42 const SkMatrix& viewMatrix,
33 const SkRect& rect, 43 const SkRect& rect,
34 const SkRect& devRect); 44 const SkRect& devRect);
35 45
36 void Append(GrBatch*, 46 void Append(GrBatch*,
37 GrColor, 47 GrColor,
38 const SkMatrix& viewMatrix, 48 const SkMatrix& viewMatrix,
39 const SkMatrix& localMatrix, 49 const SkMatrix& localMatrix,
40 const SkRect& rect, 50 const SkRect& rect,
41 const SkRect& devRect); 51 const SkRect& devRect);
42 }; 52 };
43 53
44 #endif 54 #endif
OLDNEW
« no previous file with comments | « src/gpu/SkGrPriv.h ('k') | src/gpu/batches/GrAAFillRectBatch.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698