ChangeLog

 12009-03-17 Glen Murphy <glen@chromium.org>
 2
 3 Reviewed by NOBODY (OOPS!).
 4
 5 Fix Skia drawing of highly scaled bitmaps; the conversion to
 6 IntRect produced visible layout test failures in highly scaled
 7 coordinate systems.
 8
 9 * WebCore\platform\graphics\skia\ImageSkia.cpp:
 10
1112009-03-17 Gustavo Noronha Silva <gns@gnome.org>
212
313 Reviewed by Mark Rowe.
41790

WebCore/platform/graphics/skia/ImageSkia.cpp

@@void BitmapImage::draw(GraphicsContext*
427427 paintSkBitmap(ctxt->platformContext(),
428428 *bm,
429429 enclosingIntRect(normSrcRect),
430  enclosingIntRect(normDstRect),
 430 normDstRect,
431431 WebCoreCompositeToSkiaComposite(compositeOp));
432432}
433433

@@void BitmapImageSingleFrameSkia::draw(Gr
447447 paintSkBitmap(ctxt->platformContext(),
448448 m_nativeImage,
449449 enclosingIntRect(normSrcRect),
450  enclosingIntRect(normDstRect),
 450 normDstRect,
451451 WebCoreCompositeToSkiaComposite(compositeOp));
452452}
453453
41738