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

Unified Diff: Source/platform/graphics/GraphicsTypes.h

Issue 1013803002: SkPaint::FilterLevel -> SkFilterQuality (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: I think I caught the last one Created 5 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/platform/graphics/GraphicsLayer.cpp ('k') | Source/platform/graphics/ImageBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/GraphicsTypes.h
diff --git a/Source/platform/graphics/GraphicsTypes.h b/Source/platform/graphics/GraphicsTypes.h
index 0cbf89226f4452e5620c94e05cac09882b43cbf0..d2a07eb4be0130b17ce6feba85144172e3ca4672 100644
--- a/Source/platform/graphics/GraphicsTypes.h
+++ b/Source/platform/graphics/GraphicsTypes.h
@@ -44,10 +44,10 @@ enum StrokeStyle {
};
enum InterpolationQuality {
- InterpolationNone = SkPaint::kNone_FilterLevel,
- InterpolationLow = SkPaint::kLow_FilterLevel,
- InterpolationMedium = SkPaint::kMedium_FilterLevel,
- InterpolationHigh = SkPaint::kHigh_FilterLevel,
+ InterpolationNone = kNone_SkFilterQuality,
+ InterpolationLow = kLow_SkFilterQuality,
+ InterpolationMedium = kMedium_SkFilterQuality,
+ InterpolationHigh = kHigh_SkFilterQuality,
#if USE(LOW_QUALITY_IMAGE_INTERPOLATION)
InterpolationDefault = InterpolationLow,
#else
« no previous file with comments | « Source/platform/graphics/GraphicsLayer.cpp ('k') | Source/platform/graphics/ImageBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698