| Index: Source/platform/graphics/ImageBuffer.cpp
|
| diff --git a/Source/platform/graphics/ImageBuffer.cpp b/Source/platform/graphics/ImageBuffer.cpp
|
| index 8b36a9d13a53166dba14682903eda09c6d99d9e4..88243af797af30ea8252cffa6f5eef00f7706477 100644
|
| --- a/Source/platform/graphics/ImageBuffer.cpp
|
| +++ b/Source/platform/graphics/ImageBuffer.cpp
|
| @@ -184,8 +184,7 @@ bool ImageBuffer::copyRenderingResultsFromDrawingBuffer(DrawingBuffer* drawingBu
|
| GL_UNSIGNED_BYTE, 0, true, false);
|
| }
|
|
|
| -void ImageBuffer::draw(GraphicsContext* context, const FloatRect& destRect, const FloatRect& srcRect,
|
| - CompositeOperator op, blink::WebBlendMode blendMode, bool useLowQualityScale)
|
| +void ImageBuffer::draw(GraphicsContext* context, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator op, blink::WebBlendMode blendMode, InterpolationQuality interpolationQuality)
|
| {
|
| if (!isValid())
|
| return;
|
| @@ -200,7 +199,7 @@ void ImageBuffer::draw(GraphicsContext* context, const FloatRect& destRect, cons
|
|
|
| RefPtr<Image> image = BitmapImage::create(NativeImageSkia::create(drawNeedsCopy(m_context.get(), context) ? deepSkBitmapCopy(bitmap) : bitmap));
|
|
|
| - context->drawImage(image.get(), destRect, srcRect, op, blendMode, DoNotRespectImageOrientation, useLowQualityScale);
|
| + context->drawImage(image.get(), destRect, srcRect, op, blendMode, DoNotRespectImageOrientation, interpolationQuality);
|
| }
|
|
|
| void ImageBuffer::flush()
|
|
|