diff options
| author | caryclark <caryclark@google.com> | 2015-02-25 09:04:04 -0800 |
|---|---|---|
| committer | Commit bot <commit-bot@chromium.org> | 2015-02-25 09:04:04 -0800 |
| commit | 63c684a8a609d39da11b4a656223cebf52ca85dc (patch) | |
| tree | d29415e15295a6384ece7cfdf601062871def428 /samplecode/SamplePathEffects.cpp | |
| parent | 4e4e8160459f68c1795f2297bcec6f7866e01fa8 (diff) | |
fuzzer fixes
Fix path bugs exposed by the path fuzzer.
Changes to existing gm and samplecode files defer their calls to construct
SkPath objects until the first draw instead of at test initialization.
Add an experimental call to SkPath to validate the internal SkPathRef.
Fix SkPath::addPoly to set the last moveto after adding a close verb.
Fix stroke to handle failures when computing the unit normal.
Add a unit test for the unit normal failure.
R=reed@google.com
Review URL: https://codereview.chromium.org/953383002
Diffstat (limited to 'samplecode/SamplePathEffects.cpp')
| -rw-r--r-- | samplecode/SamplePathEffects.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/samplecode/SamplePathEffects.cpp b/samplecode/SamplePathEffects.cpp index a5f91c296e..f1574fbda8 100644 --- a/samplecode/SamplePathEffects.cpp +++ b/samplecode/SamplePathEffects.cpp @@ -96,6 +96,10 @@ class PathEffectView : public SampleView { public: PathEffectView() : fPhase(0) { + } + +protected: + void onOnceBeforeDraw() SK_OVERRIDE { SkRandom rand; int steps = 20; SkScalar dist = SkIntToScalar(400); @@ -126,7 +130,6 @@ public: this->setBGColor(0xFFDDDDDD); } -protected: bool onQuery(SkEvent* evt) SK_OVERRIDE { if (SampleCode::TitleQ(*evt)) { SampleCode::TitleR(evt, "PathEffects"); |
