| Index: Source/platform/graphics/GraphicsTypes.h
|
| diff --git a/Source/platform/graphics/GraphicsTypes.h b/Source/platform/graphics/GraphicsTypes.h
|
| index 1482dfbefc9de4324ed0ae78a89c8954196eb276..6eecfc7363df8c954311f1082db304585aec40c2 100644
|
| --- a/Source/platform/graphics/GraphicsTypes.h
|
| +++ b/Source/platform/graphics/GraphicsTypes.h
|
| @@ -43,11 +43,15 @@ enum StrokeStyle {
|
| };
|
|
|
| enum InterpolationQuality {
|
| - InterpolationDefault,
|
| InterpolationNone,
|
| InterpolationLow,
|
| InterpolationMedium,
|
| - InterpolationHigh
|
| + InterpolationHigh,
|
| +#if USE(LOW_QUALITY_IMAGE_INTERPOLATION)
|
| + InterpolationDefault = InterpolationLow,
|
| +#else
|
| + InterpolationDefault = InterpolationHigh,
|
| +#endif
|
| };
|
|
|
| enum CompositeOperator {
|
|
|