am 57e824f7: Merge change I8db532c1 into eclair-mr2

Merge commit '57e824f7c33caf1e8c9cb08795464df4b8dbb218' into eclair-mr2-plus-aosp

* commit '57e824f7c33caf1e8c9cb08795464df4b8dbb218':
  don't turn off filtering/dithering when we scroll.
This commit is contained in:
Mike Reed
2009-10-26 06:24:48 -07:00
committed by Android Git Automerger

View File

@@ -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,