remove unused params
authorMike Reed <reed@google.com>
Fri, 17 Mar 2017 19:35:40 +0000 (15:35 -0400)
committerSkia Commit-Bot <skia-commit-bot@chromium.org>
Fri, 17 Mar 2017 19:37:27 +0000 (19:37 +0000)
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>

include/core/SkCanvas.h

index 3a2b3fc..27b28ff 100644 (file)
@@ -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&);