| Index: Source/platform/graphics/BitmapImage.cpp
|
| diff --git a/Source/platform/graphics/BitmapImage.cpp b/Source/platform/graphics/BitmapImage.cpp
|
| index 844d592d7127cdf0e5aa377d4cc884614da3c99c..3e617c0462d3adb566d903b882f4f531f6d43119 100644
|
| --- a/Source/platform/graphics/BitmapImage.cpp
|
| +++ b/Source/platform/graphics/BitmapImage.cpp
|
| @@ -260,7 +260,7 @@ String BitmapImage::filenameExtension() const
|
| return m_source.filenameExtension();
|
| }
|
|
|
| -void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
|
| +void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, SkXfermode::Mode compositeOp, RespectImageOrientationEnum shouldRespectImageOrientation)
|
| {
|
| // Spin the animation to the correct frame before we try to draw it, so we
|
| // don't draw an old frame and then immediately need to draw a newer one,
|
| @@ -299,7 +299,7 @@ void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const Fl
|
| }
|
| }
|
|
|
| - image->draw(ctxt, normSrcRect, normDstRect, compositeOp, blendMode);
|
| + image->draw(ctxt, normSrcRect, normDstRect, compositeOp);
|
|
|
| if (ImageObserver* observer = imageObserver())
|
| observer->didDraw(this);
|
|
|