| Index: cc/animation/transform_operations.cc
|
| diff --git a/cc/animation/transform_operations.cc b/cc/animation/transform_operations.cc
|
| index fb1c17d517598e3c23af197d72996558d02e70a9..29a3d90626b5139245c75e6e5b5408e744bdf97f 100644
|
| --- a/cc/animation/transform_operations.cc
|
| +++ b/cc/animation/transform_operations.cc
|
| @@ -224,8 +224,7 @@ void TransformOperations::AppendScale(SkMScalar x, SkMScalar y, SkMScalar z) {
|
|
|
| void TransformOperations::AppendSkew(SkMScalar x, SkMScalar y) {
|
| TransformOperation to_add;
|
| - to_add.matrix.SkewX(x);
|
| - to_add.matrix.SkewY(y);
|
| + to_add.matrix.Skew(x, y);
|
| to_add.type = TransformOperation::TRANSFORM_OPERATION_SKEW;
|
| to_add.skew.x = x;
|
| to_add.skew.y = y;
|
|
|