Index: sky/engine/platform/graphics/GraphicsTypes.h |
diff --git a/sky/engine/platform/graphics/GraphicsTypes.h b/sky/engine/platform/graphics/GraphicsTypes.h |
index b155f457c59872676bde9017072c9ce47f09f26e..7d2ae223d0e5e98a1fa4c2b712b4a5eb64a40ba0 100644 |
--- a/sky/engine/platform/graphics/GraphicsTypes.h |
+++ b/sky/engine/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 |