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

Unified Diff: cc/animation/timing_function.h

Issue 16112002: Do not clamp y values on internal knots of timing function bezier curves (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 7 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 | cc/animation/timing_function.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/timing_function.h
diff --git a/cc/animation/timing_function.h b/cc/animation/timing_function.h
index b1080e6cf1b1629edf9d52c210f009bbc9007b4a..3aa2f253d81fdbb933e1ca6eb34454f0c8088b23 100644
--- a/cc/animation/timing_function.h
+++ b/cc/animation/timing_function.h
@@ -39,10 +39,10 @@ class CC_EXPORT CubicBezierTimingFunction : public TimingFunction {
protected:
CubicBezierTimingFunction(double x1, double y1, double x2, double y2);
- SkScalar x1_;
- SkScalar y1_;
- SkScalar x2_;
- SkScalar y2_;
+ double x1_;
+ double y1_;
+ double x2_;
+ double y2_;
private:
DISALLOW_ASSIGN(CubicBezierTimingFunction);
« no previous file with comments | « no previous file | cc/animation/timing_function.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698