Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(896)

Unified Diff: gm/dashcircle.cpp

Issue 1870133003: Make some GMs animate (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Actually use the timer Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gm/lighting.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/dashcircle.cpp
diff --git a/gm/dashcircle.cpp b/gm/dashcircle.cpp
index a02c7d0f7b4cf5e91f95df55d178d1d4d12b8724..f631c4047694dcc01d9af0b8885a219b8f47054a 100644
--- a/gm/dashcircle.cpp
+++ b/gm/dashcircle.cpp
@@ -6,6 +6,7 @@
*/
#include "gm.h"
+#include "SkAnimTimer.h"
#include "SkPath.h"
#include "SkDashPathEffect.h"
@@ -24,55 +25,86 @@ struct DashExample {
{ dash4, SK_ARRAY_COUNT(dash4) }
};
-DEF_SIMPLE_GM(dashcircle, canvas, 900, 1200) {
- SkPaint refPaint;
- refPaint.setAntiAlias(true);
- refPaint.setColor(0xFFbf3f7f);
- refPaint.setStyle(SkPaint::kStroke_Style);
- refPaint.setStrokeWidth(1);
- const SkScalar radius = 125;
- SkRect oval = SkRect::MakeLTRB(-radius - 20, -radius - 20, radius + 20, radius + 20);
- SkPath circle;
- circle.addCircle(0, 0, radius);
- SkScalar circumference = radius * SK_ScalarPI * 2;
- int wedges[] = { 6, 12, 36 };
- canvas->translate(radius + 20, radius + 20);
- for (int wedge : wedges) {
- SkScalar arcLength = 360.f / wedge;
- canvas->save();
- for (const DashExample& dashExample : dashExamples) {
- SkPath refPath;
- int dashUnits = 0;
- for (int index = 0; index < dashExample.length; ++index) {
- dashUnits += dashExample.pattern[index];
- }
- SkScalar unitLength = arcLength / dashUnits;
- SkScalar angle = 0;
- for (int index = 0; index < wedge; ++index) {
- for (int i2 = 0; i2 < dashExample.length; i2 += 2) {
- SkScalar span = dashExample.pattern[i2] * unitLength;
- refPath.moveTo(0, 0);
- refPath.arcTo(oval, angle, span, false);
- refPath.close();
- angle += span + (dashExample.pattern[i2 + 1]) * unitLength;
+
+class DashCircleGM : public skiagm::GM {
+public:
+ DashCircleGM() : fRotation(0) { }
+
+protected:
+ SkString onShortName() override { return SkString("dashcircle"); }
+
+ SkISize onISize() override { return SkISize::Make(900, 1200); }
+
+ void onDraw(SkCanvas* canvas) override {
+ SkPaint refPaint;
+ refPaint.setAntiAlias(true);
+ refPaint.setColor(0xFFbf3f7f);
+ refPaint.setStyle(SkPaint::kStroke_Style);
+ refPaint.setStrokeWidth(1);
+ const SkScalar radius = 125;
+ SkRect oval = SkRect::MakeLTRB(-radius - 20, -radius - 20, radius + 20, radius + 20);
+ SkPath circle;
+ circle.addCircle(0, 0, radius);
+ SkScalar circumference = radius * SK_ScalarPI * 2;
+ int wedges[] = { 6, 12, 36 };
+ canvas->translate(radius+20, radius+20);
+ for (int wedge : wedges) {
+ SkScalar arcLength = 360.f / wedge;
+ canvas->save();
+ for (const DashExample& dashExample : dashExamples) {
+ SkPath refPath;
+ int dashUnits = 0;
+ for (int index = 0; index < dashExample.length; ++index) {
+ dashUnits += dashExample.pattern[index];
}
+ SkScalar unitLength = arcLength / dashUnits;
+ SkScalar angle = 0;
+ for (int index = 0; index < wedge; ++index) {
+ for (int i2 = 0; i2 < dashExample.length; i2 += 2) {
+ SkScalar span = dashExample.pattern[i2] * unitLength;
+ refPath.moveTo(0, 0);
+ refPath.arcTo(oval, angle, span, false);
+ refPath.close();
+ angle += span + (dashExample.pattern[i2 + 1]) * unitLength;
+ }
+ }
+ canvas->save();
+ canvas->rotate(fRotation);
+ canvas->drawPath(refPath, refPaint);
+ canvas->restore();
+ SkPaint p;
+ p.setAntiAlias(true);
+ p.setStyle(SkPaint::kStroke_Style);
+ p.setStrokeWidth(10);
+ SkScalar intervals[4];
+ int intervalCount = dashExample.length;
+ SkScalar dashLength = circumference / wedge / dashUnits;
+ for (int index = 0; index < dashExample.length; ++index) {
+ intervals[index] = dashExample.pattern[index] * dashLength;
+ }
+ p.setPathEffect(SkDashPathEffect::Make(intervals, intervalCount, 0));
+ canvas->save();
+ canvas->rotate(fRotation);
+ canvas->drawPath(circle, p);
+ canvas->restore();
+ canvas->translate(0, radius * 2 + 50);
}
- canvas->drawPath(refPath, refPaint);
- SkPaint p;
- p.setAntiAlias(true);
- p.setStyle(SkPaint::kStroke_Style);
- p.setStrokeWidth(10);
- SkScalar intervals[4];
- int intervalCount = dashExample.length;
- SkScalar dashLength = circumference / wedge / dashUnits;
- for (int index = 0; index < dashExample.length; ++index) {
- intervals[index] = dashExample.pattern[index] * dashLength;
- }
- p.setPathEffect(SkDashPathEffect::Make(intervals, intervalCount, 0));
- canvas->drawPath(circle, p);
- canvas->translate(0, radius * 2 + 50);
+ canvas->restore();
+ canvas->translate(radius * 2 + 50, 0);
}
- canvas->restore();
- canvas->translate(radius * 2 + 50, 0);
}
-}
+
+ bool onAnimate(const SkAnimTimer& timer) override {
+ static const SkScalar kDesiredDurationSecs = 100.0f;
+
+ fRotation = timer.scaled(360.0f/kDesiredDurationSecs, 360.0f);
+ return true;
+ }
+
+private:
+ SkScalar fRotation;
+
+ typedef GM INHERITED;
+};
+
+DEF_GM(return new DashCircleGM; )
« no previous file with comments | « no previous file | gm/lighting.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698