aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrOvalRenderer.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-07-13 08:44:06 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-13 08:44:06 -0700
commitae3d63ad906021b6ca27f0737addc62034457ff0 (patch)
tree3254119538ad5f6809064d7128cf70cda674be16 /src/gpu/GrOvalRenderer.h
parent1e545b6915a2f2e59d917b7fa9695aa15467f61b (diff)
ovals now take a const GrPipelineBuilder
Diffstat (limited to 'src/gpu/GrOvalRenderer.h')
-rw-r--r--src/gpu/GrOvalRenderer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gpu/GrOvalRenderer.h b/src/gpu/GrOvalRenderer.h
index d8d9e0c806..d591ffeed3 100644
--- a/src/gpu/GrOvalRenderer.h
+++ b/src/gpu/GrOvalRenderer.h
@@ -21,21 +21,21 @@ class SkStrokeRec;
class GrOvalRenderer {
public:
static bool DrawOval(GrDrawTarget*,
- GrPipelineBuilder*,
+ const GrPipelineBuilder&,
GrColor,
const SkMatrix& viewMatrix,
bool useAA,
const SkRect& oval,
const SkStrokeRec& stroke);
static bool DrawRRect(GrDrawTarget*,
- GrPipelineBuilder*,
+ const GrPipelineBuilder&,
GrColor,
const SkMatrix& viewMatrix,
bool useAA,
const SkRRect& rrect,
const SkStrokeRec& stroke);
static bool DrawDRRect(GrDrawTarget* target,
- GrPipelineBuilder*,
+ const GrPipelineBuilder&,
GrColor,
const SkMatrix& viewMatrix,
bool useAA,
@@ -46,21 +46,21 @@ private:
GrOvalRenderer();
static bool DrawEllipse(GrDrawTarget* target,
- GrPipelineBuilder*,
+ const GrPipelineBuilder&,
GrColor,
const SkMatrix& viewMatrix,
bool useCoverageAA,
const SkRect& ellipse,
const SkStrokeRec& stroke);
static bool DrawDIEllipse(GrDrawTarget* target,
- GrPipelineBuilder*,
+ const GrPipelineBuilder&,
GrColor,
const SkMatrix& viewMatrix,
bool useCoverageAA,
const SkRect& ellipse,
const SkStrokeRec& stroke);
static void DrawCircle(GrDrawTarget* target,
- GrPipelineBuilder*,
+ const GrPipelineBuilder&,
GrColor,
const SkMatrix& viewMatrix,
bool useCoverageAA,