From ede860e91c2a0021266907885ea2c9b4be09e121 Mon Sep 17 00:00:00 2001 From: Brian Osman Date: Wed, 22 Nov 2017 16:36:07 -0500 Subject: Delete even more unused views code Bug: skia: Change-Id: I41480aa89dfcd8cb7e016e477cbabe354f35ce8a Reviewed-on: https://skia-review.googlesource.com/75480 Reviewed-by: Mike Reed Commit-Queue: Brian Osman --- samplecode/SamplePathOverstroke.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'samplecode/SamplePathOverstroke.cpp') diff --git a/samplecode/SamplePathOverstroke.cpp b/samplecode/SamplePathOverstroke.cpp index a2d1b89b86..b6202a7784 100644 --- a/samplecode/SamplePathOverstroke.cpp +++ b/samplecode/SamplePathOverstroke.cpp @@ -43,27 +43,21 @@ class OverstrokeView : public SampleView { switch (uni) { case ',': fStroke += 1.0; - this->inval(nullptr); return true; case '.': fStroke -= 1.0; - this->inval(nullptr); return true; case 'x': fPathType = (fPathType + 1) % 4; - this->inval(nullptr); return true; case 'c': fClosePath = !fClosePath; - this->inval(nullptr); return true; case 'f': fDrawFillPath = !fDrawFillPath; - this->inval(nullptr); return true; case 'D': fDumpHex = !fDumpHex; - this->inval(nullptr); return true; default: break; -- cgit v1.2.3