| Index: Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp
|
| ===================================================================
|
| --- Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp (revision 147814)
|
| +++ Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp (working copy)
|
| @@ -893,12 +893,11 @@
|
| platformContext()->setAlpha(alpha);
|
| }
|
|
|
| -void GraphicsContext::setPlatformCompositeOperation(CompositeOperator op, BlendMode)
|
| +void GraphicsContext::setPlatformCompositeOperation(CompositeOperator op, BlendMode blendMode)
|
| {
|
| if (paintingDisabled())
|
| return;
|
| -
|
| - platformContext()->setXfermodeMode(WebCoreCompositeToSkiaComposite(op));
|
| + platformContext()->setXfermodeMode(WebCoreCompositeToSkiaComposite(op, blendMode));
|
| }
|
|
|
| InterpolationQuality GraphicsContext::imageInterpolationQuality() const
|
|
|