| 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 GrAAFillRectBatch_DEFINED | 8 #ifndef GrAAFillRectBatch_DEFINED |
| 9 #define GrAAFillRectBatch_DEFINED | 9 #define GrAAFillRectBatch_DEFINED |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 GrDrawBatch* Create(GrColor color, | 29 GrDrawBatch* Create(GrColor color, |
| 30 const SkMatrix& viewMatrix, | 30 const SkMatrix& viewMatrix, |
| 31 const SkMatrix& localMatrix, | 31 const SkMatrix& localMatrix, |
| 32 const SkRect& rect, | 32 const SkRect& rect, |
| 33 const SkRect& devRect); | 33 const SkRect& devRect); |
| 34 | 34 |
| 35 GrDrawBatch* CreateWithLocalRect(GrColor color, | 35 GrDrawBatch* CreateWithLocalRect(GrColor color, |
| 36 const SkMatrix& viewMatrix, | 36 const SkMatrix& viewMatrix, |
| 37 const SkRect& rect, | 37 const SkRect& rect, |
| 38 const SkRect& localRect); | 38 const SkRect& localRect); |
| 39 | |
| 40 void Append(GrBatch*, | |
| 41 GrColor, | |
| 42 const SkMatrix& viewMatrix, | |
| 43 const SkRect& rect, | |
| 44 const SkRect& devRect); | |
| 45 | |
| 46 void Append(GrBatch*, | |
| 47 GrColor, | |
| 48 const SkMatrix& viewMatrix, | |
| 49 const SkMatrix& localMatrix, | |
| 50 const SkRect& rect, | |
| 51 const SkRect& devRect); | |
| 52 }; | 39 }; |
| 53 | 40 |
| 54 #endif | 41 #endif |
| OLD | NEW |