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

Unified Diff: src/core/SkDeviceImageFilterProxy.h

Issue 1140573004: Antialias matrix-image-filter to get smooth diagonals Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add SK_SUPPORT_LEGACY_IMAGEFILTER_TRANSFORM_SCRATCH_LAYTER guard Created 5 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: src/core/SkDeviceImageFilterProxy.h
diff --git a/src/core/SkDeviceImageFilterProxy.h b/src/core/SkDeviceImageFilterProxy.h
index 79ff957564c48af5661dff3e3e5d0296499e2070..d77f3f62cdd30433cf642cc93d047e1b0fea8e5a 100644
--- a/src/core/SkDeviceImageFilterProxy.h
+++ b/src/core/SkDeviceImageFilterProxy.h
@@ -21,6 +21,8 @@ public:
{}
SkBaseDevice* createDevice(int w, int h) override {
+ // Our contract is to return a zero-initialized device, so we request iPremul_AlphaType
+ // which is the signal to the fDevice to perform this init.
SkBaseDevice::CreateInfo cinfo(SkImageInfo::MakeN32Premul(w, h),
SkBaseDevice::kNever_TileUsage,
kUnknown_SkPixelGeometry,

Powered by Google App Engine
This is Rietveld 408576698