diff options
author | reed <reed@google.com> | 2015-07-29 12:44:52 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-29 12:44:52 -0700 |
commit | 3ae4701fe8a55880da4d75510f2eb1b57729196b (patch) | |
tree | a5996273a39473da1430d95123508cd253751228 /src | |
parent | 028205bedb7df56b0995ebb44238a69ff1681d0b (diff) |
remove (unnecessary?) call to notifyPixelsChanged
BUG=skia:
Review URL: https://codereview.chromium.org/1265733002
Diffstat (limited to 'src')
-rw-r--r-- | src/core/SkPixelRef.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/SkPixelRef.cpp b/src/core/SkPixelRef.cpp index 56bcc9a792..8e0f21280c 100644 --- a/src/core/SkPixelRef.cpp +++ b/src/core/SkPixelRef.cpp @@ -365,7 +365,6 @@ void SkPixelRef::setTemporarilyImmutable() { void SkPixelRef::restoreMutability() { SkASSERT(fMutability != kImmutable); fMutability = kMutable; - this->notifyPixelsChanged(); // This is just precautionary. } bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) { |