Chromium Code Reviews| Index: src/gpu/GrPictureUtils.cpp |
| diff --git a/src/gpu/GrPictureUtils.cpp b/src/gpu/GrPictureUtils.cpp |
| index a4f32e7e02f226e5e13f0c3d9f8ba6d87976dcd1..6aeda2032dd2ac1c198e7279e36eddd22aea59f8 100644 |
| --- a/src/gpu/GrPictureUtils.cpp |
| +++ b/src/gpu/GrPictureUtils.cpp |
| @@ -127,8 +127,8 @@ private: |
| dst.fPicture->ref(); |
| dst.fSize = SkISize::Make(newClip.width(), newClip.height()); |
| dst.fOffset = SkIPoint::Make(newClip.fLeft, newClip.fTop); |
|
robertphillips
2014/09/30 17:44:40
This is just a minor bug fix. I got the order wron
|
| - dst.fOriginXform = *fCTM; |
| - dst.fOriginXform.postConcat(src.fOriginXform); |
| + dst.fOriginXform = src.fOriginXform; |
| + dst.fOriginXform.postConcat(*fCTM); |
| if (src.fPaint) { |
| dst.fPaint = SkNEW_ARGS(SkPaint, (*src.fPaint)); |
| } |