Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57e824f7 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I8db532c1 into eclair-mr2

* changes:
  don't turn off filtering/dithering when we scroll.
parents 0f2a4e60 8db532c1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1683,8 +1683,9 @@ final class WebViewCore {

    final DrawFilter mZoomFilter =
                    new PaintFlagsDrawFilter(ZOOM_BITS, Paint.LINEAR_TEXT_FLAG);
    final DrawFilter mScrollFilter =
                    new PaintFlagsDrawFilter(SCROLL_BITS, 0);
    final DrawFilter mScrollFilter = null;
    // If we need to trade more speed for less quality on slower devices
    // use this: new PaintFlagsDrawFilter(SCROLL_BITS, 0);

    /* package */ void drawContentPicture(Canvas canvas, int color,
                                          boolean animatingZoom,