| Index: src/gpu/batches/GrRectBatchFactory.h
|
| diff --git a/src/gpu/batches/GrRectBatchFactory.h b/src/gpu/batches/GrRectBatchFactory.h
|
| index 5a43a342143eb3a7fe223f2ffccebf8e6aa1ca33..195a2b9e58be317d2ec12550b2f67e9df31099d4 100644
|
| --- a/src/gpu/batches/GrRectBatchFactory.h
|
| +++ b/src/gpu/batches/GrRectBatchFactory.h
|
| @@ -22,22 +22,22 @@ class SkStrokeRec;
|
| */
|
| namespace GrRectBatchFactory {
|
|
|
| -inline GrDrawBatch* CreateFillBW(GrColor color,
|
| - const SkMatrix& viewMatrix,
|
| - const SkRect& rect,
|
| - const SkRect* localRect,
|
| - const SkMatrix* localMatrix) {
|
| +inline GrDrawBatch* CreateNonAAFill(GrColor color,
|
| + const SkMatrix& viewMatrix,
|
| + const SkRect& rect,
|
| + const SkRect* localRect,
|
| + const SkMatrix* localMatrix) {
|
| return GrBWFillRectBatch::Create(color, viewMatrix, rect, localRect, localMatrix);
|
| }
|
|
|
| -inline GrDrawBatch* CreateFillAA(GrColor color,
|
| +inline GrDrawBatch* CreateAAFill(GrColor color,
|
| const SkMatrix& viewMatrix,
|
| const SkRect& rect,
|
| const SkRect& devRect) {
|
| return GrAAFillRectBatch::Create(color, viewMatrix, rect, devRect);
|
| }
|
|
|
| -inline GrDrawBatch* CreateFillAA(GrColor color,
|
| +inline GrDrawBatch* CreateAAFill(GrColor color,
|
| const SkMatrix& viewMatrix,
|
| const SkMatrix& localMatrix,
|
| const SkRect& rect,
|
| @@ -45,20 +45,20 @@ inline GrDrawBatch* CreateFillAA(GrColor color,
|
| return GrAAFillRectBatch::Create(color, viewMatrix, localMatrix, rect, devRect);
|
| }
|
|
|
| -GrDrawBatch* CreateStrokeBW(GrColor color,
|
| - const SkMatrix& viewMatrix,
|
| - const SkRect& rect,
|
| - SkScalar strokeWidth,
|
| - bool snapToPixelCenters);
|
| +GrDrawBatch* CreateNonAAStroke(GrColor color,
|
| + const SkMatrix& viewMatrix,
|
| + const SkRect& rect,
|
| + SkScalar strokeWidth,
|
| + bool snapToPixelCenters);
|
|
|
| -GrDrawBatch* CreateStrokeAA(GrColor,
|
| +GrDrawBatch* CreateAAStroke(GrColor,
|
| const SkMatrix& viewMatrix,
|
| const SkRect& rect,
|
| const SkRect& devRect,
|
| const SkStrokeRec& stroke);
|
|
|
| // First rect is outer; second rect is inner
|
| -GrDrawBatch* CreateFillNestedRectsAA(GrColor,
|
| +GrDrawBatch* CreateAAFillNestedRects(GrColor,
|
| const SkMatrix& viewMatrix,
|
| const SkRect rects[2]);
|
|
|
|
|