| Index: src/gpu/batches/GrRectBatchFactory.h
|
| diff --git a/src/gpu/batches/GrRectBatchFactory.h b/src/gpu/batches/GrRectBatchFactory.h
|
| index 33ecf917d044aa23fbe4717ed25533b131feaa97..70ceac2c397b1a1e533308bbcf22fdbeaca1d9aa 100644
|
| --- a/src/gpu/batches/GrRectBatchFactory.h
|
| +++ b/src/gpu/batches/GrRectBatchFactory.h
|
| @@ -20,11 +20,17 @@ struct SkRect;
|
| */
|
| namespace GrRectBatchFactory {
|
|
|
| -GrBatch* Create(GrColor color,
|
| - const SkMatrix& viewMatrix,
|
| - const SkRect& rect,
|
| - const SkRect* localRect,
|
| - const SkMatrix* localMatrix);
|
| +GrBatch* CreateFillBW(GrColor color,
|
| + const SkMatrix& viewMatrix,
|
| + const SkRect& rect,
|
| + const SkRect* localRect,
|
| + const SkMatrix* localMatrix);
|
| +
|
| +GrBatch* CreateStrokeBW(GrColor color,
|
| + const SkMatrix& viewMatrix,
|
| + const SkRect& rect,
|
| + SkScalar strokeWidth,
|
| + bool snapToPixelCenters);
|
|
|
| };
|
|
|
|
|