aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-03-17 15:35:40 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-17 19:37:27 +0000
commit6ab59baa84644a30f57ebf98a57a7561b644dfb3 (patch)
treefcac19966ed6f60c3582b5b7deefb59774664fbf /include/core
parent795c5ea6572ca8b58961ed64d628cc407005f1b3 (diff)
remove unused params
BUG=skia:6366 Change-Id: I0cfb8e4a969dc018339047183176fb242e455ab8 NOTRY=True Reviewed-on: https://skia-review.googlesource.com/9869 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include/core')
-rw-r--r--include/core/SkCanvas.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h
index 3a2b3fc09a..27b28ff029 100644
--- a/include/core/SkCanvas.h
+++ b/include/core/SkCanvas.h
@@ -1444,9 +1444,9 @@ protected:
virtual void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&);
#ifdef SK_SUPPORT_LEGACY_DRAWVERTICES_VIRTUAL
- virtual void onDrawVertices(VertexMode, int vertexCount, const SkPoint vertices[],
- const SkPoint texs[], const SkColor colors[], SkBlendMode,
- const uint16_t indices[], int indexCount, const SkPaint&) {}
+ virtual void onDrawVertices(VertexMode, int, const SkPoint[],
+ const SkPoint[], const SkColor[], SkBlendMode,
+ const uint16_t[], int, const SkPaint&) {}
#endif
virtual void onDrawVerticesObject(const SkVertices*, SkBlendMode, const SkPaint&);