| 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 |
| 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, | 27 const SkRect& rect); |
| 28 const SkRect& devRect); | |
| 29 | 28 |
| 30 void Append(GrBatch*, | 29 bool Append(GrBatch*, |
| 31 GrColor, | 30 GrColor, |
| 32 const SkMatrix& viewMatrix, | 31 const SkMatrix& viewMatrix, |
| 33 const SkRect& rect, | 32 const SkRect& rect); |
| 34 const SkRect& devRect); | |
| 35 | 33 |
| 36 void Append(GrBatch*, | 34 bool Append(GrBatch*, |
| 37 GrColor, | 35 GrColor, |
| 38 const SkMatrix& viewMatrix, | 36 const SkMatrix& viewMatrix, |
| 39 const SkMatrix& localMatrix, | 37 const SkMatrix& localMatrix, |
| 40 const SkRect& rect, | 38 const SkRect& rect, |
| 41 const SkRect& devRect); | 39 const SkRect& devRect); |
| 42 }; | 40 }; |
| 43 | 41 |
| 44 #endif | 42 #endif |
| OLD | NEW |