aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SamplePathOverstroke.cpp
diff options
context:
space:
mode:
authorGravatar Brian Osman <brianosman@google.com>2017-11-22 16:36:07 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-29 18:12:35 +0000
commitede860e91c2a0021266907885ea2c9b4be09e121 (patch)
tree65e11fcdab6d13d133fc881f38d3efda85402d92 /samplecode/SamplePathOverstroke.cpp
parent3f67914c01f32fe61fd0af5022ebfd4e19d68f0e (diff)
Delete even more unused views code
Bug: skia: Change-Id: I41480aa89dfcd8cb7e016e477cbabe354f35ce8a Reviewed-on: https://skia-review.googlesource.com/75480 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
Diffstat (limited to 'samplecode/SamplePathOverstroke.cpp')
-rw-r--r--samplecode/SamplePathOverstroke.cpp6
1 files changed, 0 insertions, 6 deletions
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;