| Index: Source/core/platform/graphics/skia/ImageBufferSkia.cpp
|
| diff --git a/Source/core/platform/graphics/skia/ImageBufferSkia.cpp b/Source/core/platform/graphics/skia/ImageBufferSkia.cpp
|
| index 091712024b0bf1bf346e883aa081da272e01a884..69464c730bc365519ba91d864583d131be64a74c 100644
|
| --- a/Source/core/platform/graphics/skia/ImageBufferSkia.cpp
|
| +++ b/Source/core/platform/graphics/skia/ImageBufferSkia.cpp
|
| @@ -259,11 +259,11 @@ static bool drawNeedsCopy(GraphicsContext* src, GraphicsContext* dst)
|
| }
|
|
|
| void ImageBuffer::draw(GraphicsContext* context, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect,
|
| - CompositeOperator op, BlendMode, bool useLowQualityScale)
|
| + CompositeOperator op, BlendMode blendMode, bool useLowQualityScale)
|
| {
|
| const SkBitmap& bitmap = *m_context->bitmap();
|
| RefPtr<Image> image = BitmapImage::create(NativeImageSkia::create(drawNeedsCopy(m_context.get(), context) ? deepSkBitmapCopy(bitmap) : bitmap));
|
| - context->drawImage(image.get(), styleColorSpace, destRect, srcRect, op, DoNotRespectImageOrientation, useLowQualityScale);
|
| + context->drawImage(image.get(), styleColorSpace, destRect, srcRect, op, blendMode, DoNotRespectImageOrientation, useLowQualityScale);
|
| }
|
|
|
| void ImageBuffer::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform,
|
|
|