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

Unified Diff: Source/WebCore/platform/graphics/filters/skia/FEGaussianBlurSkia.cpp

Issue 9837019: Revert 104566 - Source/WebCore: [Skia] Switch FEColorMatrix to use a skia-based implementation when (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « Source/WebCore/platform/graphics/filters/FilterEffect.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/graphics/filters/skia/FEGaussianBlurSkia.cpp
===================================================================
--- Source/WebCore/platform/graphics/filters/skia/FEGaussianBlurSkia.cpp (revision 111759)
+++ Source/WebCore/platform/graphics/filters/skia/FEGaussianBlurSkia.cpp (working copy)
@@ -32,11 +32,11 @@
namespace WebCore {
-bool FEGaussianBlur::platformApplySkia()
+void FEGaussianBlur::platformApplySkia()
{
ImageBuffer* resultImage = createImageBufferResult();
if (!resultImage)
- return false;
+ return;
FilterEffect* in = inputEffect(0);
@@ -57,7 +57,7 @@
paint.setColor(0xFFFFFFFF);
dstContext->drawImage(image.get(), ColorSpaceDeviceRGB, drawingRegion.location(), CompositeCopy);
canvas->restore();
- return true;
+ return;
}
};
« no previous file with comments | « Source/WebCore/platform/graphics/filters/FilterEffect.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698