diff options
author | reed <reed@google.com> | 2015-05-13 14:00:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-13 14:00:00 -0700 |
commit | 177cb8498662600e9866e260d52d6a2401ad78a8 (patch) | |
tree | c2aa10774e252f02b024c39a0b4f3dc1bb33ce1f /include/core | |
parent | 4f12b8bd2cb43daeffa4d1c53120ae94c5ccf486 (diff) |
Revert of Implement support for non-scale/translate CTM in image filters. (patchset #4 id:60001 of https://codereview.chromium.org/1120043002/)
Reason for revert:
don't reference layer after its deleted
Original issue's description:
> Implement support for non-scale/translate CTM in image filters.
>
> Implemented by extracting out the non-scale/translate components
> and applying that post-filter as an SkMatrixImageFilter.
>
> BUG=skia:
>
> Committed: https://skia.googlesource.com/skia/+/4f12b8bd2cb43daeffa4d1c53120ae94c5ccf486
TBR=robertphillips@google.com,senorblanco@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Review URL: https://codereview.chromium.org/1128133005
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkCanvas.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h index ac01fad6b2..e7dac5e145 100644 --- a/include/core/SkCanvas.h +++ b/include/core/SkCanvas.h @@ -1261,7 +1261,7 @@ private: enum { kMCRecSize = 128, // most recent measurement kMCRecCount = 8, // common depth for save/restores - kDeviceCMSize = 176, // most recent measurement + kDeviceCMSize = 136, // most recent measurement }; intptr_t fMCRecStorage[kMCRecSize * kMCRecCount / sizeof(intptr_t)]; intptr_t fDeviceCMStorage[kDeviceCMSize / sizeof(intptr_t)]; @@ -1285,7 +1285,6 @@ private: void doSave(); void checkForDeferredSave(); - void internalSetMatrix(const SkMatrix& matrix); friend class SkDrawIter; // needs setupDrawForLayerDevice() friend class AutoDrawLooper; |