Index: Source/platform/graphics/GraphicsTypes.h |
diff --git a/Source/platform/graphics/GraphicsTypes.h b/Source/platform/graphics/GraphicsTypes.h |
index 6eecfc7363df8c954311f1082db304585aec40c2..b0938f3fe273986b6d1c882abf5e62eddae96f95 100644 |
--- a/Source/platform/graphics/GraphicsTypes.h |
+++ b/Source/platform/graphics/GraphicsTypes.h |
@@ -43,10 +43,10 @@ enum StrokeStyle { |
}; |
enum InterpolationQuality { |
- InterpolationNone, |
- InterpolationLow, |
- InterpolationMedium, |
- InterpolationHigh, |
+ InterpolationNone = SkPaint::kNone_FilterLevel, |
+ InterpolationLow = SkPaint::kLow_FilterLevel, |
+ InterpolationMedium = SkPaint::kMedium_FilterLevel, |
+ InterpolationHigh = SkPaint::kHigh_FilterLevel, |
#if USE(LOW_QUALITY_IMAGE_INTERPOLATION) |
InterpolationDefault = InterpolationLow, |
#else |