diff options
| author | 2009-10-26 06:24:48 -0700 | |
|---|---|---|
| committer | 2009-10-26 06:24:48 -0700 | |
| commit | 75d562696e709b6d9e61a23fc86f0cfba15e655e (patch) | |
| tree | 760b6c1f189645caf9038fa5ac69699878d73047 | |
| parent | af081aa1edf8f427f9684d5a9bdadc43e994fefd (diff) | |
| parent | 57e824f7c33caf1e8c9cb08795464df4b8dbb218 (diff) | |
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.
| -rw-r--r-- | core/java/android/webkit/WebViewCore.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebViewCore.java b/core/java/android/webkit/WebViewCore.java index 4dd75d8a1f4f..815581397f86 100644 --- a/core/java/android/webkit/WebViewCore.java +++ b/core/java/android/webkit/WebViewCore.java @@ -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, |