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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp

Issue 1961083006: Don't store an SkPicture in the SourceGraphic FilterEffect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop clearResult call in addAbsolutePaintRect Created 4 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
Index: third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp b/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
index 0bb57bcb6437b0d2fb33d480a3d6008d05245e14..5a867e720f1ac3df2d167d36898a59d275705739 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
@@ -22,8 +22,6 @@
#include "platform/graphics/filters/Filter.h"
#include "platform/text/TextStream.h"
-#include "third_party/skia/include/core/SkPicture.h"
-#include "third_party/skia/include/effects/SkPictureImageFilter.h"
namespace blink {
@@ -49,24 +47,11 @@ FloatRect SourceGraphic::determineAbsolutePaintRect(const FloatRect& requestedRe
return srcRect;
}
-void SourceGraphic::setPicture(sk_sp<SkPicture> picture)
-{
- m_picture = std::move(picture);
-}
-
void SourceGraphic::setSourceRect(const IntRect& sourceRect)
{
m_sourceRect = sourceRect;
}
-sk_sp<SkImageFilter> SourceGraphic::createImageFilter()
-{
- if (!m_picture)
- return nullptr;
-
- return SkPictureImageFilter::Make(m_picture, m_picture->cullRect());
-}
-
TextStream& SourceGraphic::externalRepresentation(TextStream& ts, int indent) const
{
writeIndent(ts, indent);

Powered by Google App Engine
This is Rietveld 408576698