| Index: src/gpu/GrOvalRenderer.h
|
| diff --git a/src/gpu/GrOvalRenderer.h b/src/gpu/GrOvalRenderer.h
|
| index c67815c451b9df103c500ce27f6e49edbedc02c5..16c1248b3f2e54f44c6669d33c91cf00707ed206 100644
|
| --- a/src/gpu/GrOvalRenderer.h
|
| +++ b/src/gpu/GrOvalRenderer.h
|
| @@ -37,18 +37,21 @@ public:
|
| bool drawOval(GrDrawTarget*,
|
| GrDrawState*,
|
| GrColor,
|
| + const SkMatrix& viewMatrix,
|
| bool useAA,
|
| const SkRect& oval,
|
| const SkStrokeRec& stroke);
|
| bool drawRRect(GrDrawTarget*,
|
| GrDrawState*,
|
| GrColor,
|
| + const SkMatrix& viewMatrix,
|
| bool useAA,
|
| const SkRRect& rrect,
|
| const SkStrokeRec& stroke);
|
| bool drawDRRect(GrDrawTarget* target,
|
| GrDrawState*,
|
| GrColor,
|
| + const SkMatrix& viewMatrix,
|
| bool useAA,
|
| const SkRRect& outer,
|
| const SkRRect& inner);
|
| @@ -57,18 +60,21 @@ private:
|
| bool drawEllipse(GrDrawTarget* target,
|
| GrDrawState*,
|
| GrColor,
|
| + const SkMatrix& viewMatrix,
|
| bool useCoverageAA,
|
| const SkRect& ellipse,
|
| const SkStrokeRec& stroke);
|
| bool drawDIEllipse(GrDrawTarget* target,
|
| GrDrawState*,
|
| GrColor,
|
| + const SkMatrix& viewMatrix,
|
| bool useCoverageAA,
|
| const SkRect& ellipse,
|
| const SkStrokeRec& stroke);
|
| void drawCircle(GrDrawTarget* target,
|
| GrDrawState*,
|
| GrColor,
|
| + const SkMatrix& viewMatrix,
|
| bool useCoverageAA,
|
| const SkRect& circle,
|
| const SkStrokeRec& stroke);
|
|
|