Index: src/core/SkDraw.cpp |
diff --git a/src/core/SkDraw.cpp b/src/core/SkDraw.cpp |
index 1cfeaa34d69e604529b0a5e703a00bc883a37e92..671da49d099dc826b75542944b834b4b9649851a 100644 |
--- a/src/core/SkDraw.cpp |
+++ b/src/core/SkDraw.cpp |
@@ -1260,13 +1260,6 @@ void SkDraw::drawBitmap(const SkBitmap& bitmap, const SkMatrix& prematrix, |
return; |
} |
-#ifndef SK_ALLOW_OVER_32K_BITMAPS |
- // run away on too-big bitmaps for now (exceed 16.16) |
- if (bitmap.width() > 32767 || bitmap.height() > 32767) { |
- return; |
- } |
-#endif |
- |
SkPaint paint(origPaint); |
paint.setStyle(SkPaint::kFill_Style); |