Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: Source/core/svg/graphics/SVGImageForContainer.cpp

Issue 22596003: Fix background blending for some cases where it did not work at all. The fix adds the blendMode par… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: adding TestExpectation lines for rebaselining Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 24 matching lines...) Expand all
35 return roundedIntSize(scaledContainerSize); 35 return roundedIntSize(scaledContainerSize);
36 } 36 }
37 37
38 void SVGImageForContainer::draw(GraphicsContext* context, const FloatRect& dstRe ct, 38 void SVGImageForContainer::draw(GraphicsContext* context, const FloatRect& dstRe ct,
39 const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode ) 39 const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode )
40 { 40 {
41 m_image->drawForContainer(context, m_containerSize, m_zoom, dstRect, srcRect , compositeOp, blendMode); 41 m_image->drawForContainer(context, m_containerSize, m_zoom, dstRect, srcRect , compositeOp, blendMode);
42 } 42 }
43 43
44 void SVGImageForContainer::drawPattern(GraphicsContext* context, const FloatRect & srcRect, const FloatSize& scale, 44 void SVGImageForContainer::drawPattern(GraphicsContext* context, const FloatRect & srcRect, const FloatSize& scale,
45 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dst Rect, BlendMode) 45 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dst Rect, BlendMode blendMode)
46 { 46 {
47 m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, compositeOp, dstRect); 47 m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, compositeOp, dstRect, blendMode);
48 } 48 }
49 49
50 PassRefPtr<NativeImageSkia> SVGImageForContainer::nativeImageForCurrentFrame() 50 PassRefPtr<NativeImageSkia> SVGImageForContainer::nativeImageForCurrentFrame()
51 { 51 {
52 return m_image->nativeImageForCurrentFrame(); 52 return m_image->nativeImageForCurrentFrame();
53 } 53 }
54 54
55 } // namespace WebCore 55 } // namespace WebCore
OLDNEW
« Source/core/platform/graphics/ImageBuffer.h ('K') | « Source/core/svg/graphics/SVGImage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698