Merge commit 'faa2d970058557fa31d06d168b402d592c368aaf' into froyo-plus-aosp

* commit 'faa2d970058557fa31d06d168b402d592c368aaf':
  Cherry-pick https://android-git.corp.google.com/g/#change,38305
This commit is contained in:
Grace Kloba
2010-04-07 18:23:25 -07:00
committed by Android Git Automerger

View File

@@ -1752,9 +1752,9 @@ final class WebViewCore {
final DrawFilter mZoomFilter =
new PaintFlagsDrawFilter(ZOOM_BITS, Paint.LINEAR_TEXT_FLAG);
final DrawFilter mScrollFilter = null;
// If we need to trade more speed for less quality on slower devices
// use this: new PaintFlagsDrawFilter(SCROLL_BITS, 0);
// If we need to trade better quality for speed, set mScrollFilter to null
final DrawFilter mScrollFilter =
new PaintFlagsDrawFilter(SCROLL_BITS, 0);
/* package */ void drawContentPicture(Canvas canvas, int color,
boolean animatingZoom,