aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkBitmapProcState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkBitmapProcState.cpp')
-rw-r--r--src/core/SkBitmapProcState.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/SkBitmapProcState.cpp b/src/core/SkBitmapProcState.cpp
index 166b62c48c..f6f9f3fa06 100644
--- a/src/core/SkBitmapProcState.cpp
+++ b/src/core/SkBitmapProcState.cpp
@@ -170,11 +170,6 @@ bool SkBitmapProcState::possiblyScaleImage() {
float dest_width = fOrigBitmap.width() / invScaleX;
float dest_height = fOrigBitmap.height() / invScaleY;
-#ifdef SK_IGNORE_CORRECT_HIGH_QUALITY_IMAGE_SCALE
- dest_width = SkScalarCeilToScalar(dest_width);
- dest_height = SkScalarCeilToScalar(dest_height);
-#endif
-
// All the criteria are met; let's make a new bitmap.
SkConvolutionProcs simd;