| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "config.h" | 22 #include "config.h" |
| 23 | 23 |
| 24 #include "core/svg/SVGGradientElement.h" | 24 #include "core/svg/SVGGradientElement.h" |
| 25 | 25 |
| 26 #include "XLinkNames.h" | 26 #include "XLinkNames.h" |
| 27 #include "core/dom/Attribute.h" | 27 #include "core/dom/Attribute.h" |
| 28 #include "core/rendering/svg/RenderSVGHiddenContainer.h" | 28 #include "core/rendering/svg/RenderSVGHiddenContainer.h" |
| 29 #include "core/rendering/svg/RenderSVGPath.h" | 29 #include "core/rendering/svg/RenderSVGPath.h" |
| 30 #include "core/rendering/svg/RenderSVGResourceLinearGradient.h" | 30 #include "core/rendering/svg/RenderSVGResourceLinearGradient.h" |
| 31 #include "core/rendering/svg/RenderSVGResourceRadialGradient.h" | 31 #include "core/rendering/svg/RenderSVGResourceRadialGradient.h" |
| 32 #include "core/svg/SVGElementInstance.h" | |
| 33 #include "core/svg/SVGStopElement.h" | 32 #include "core/svg/SVGStopElement.h" |
| 34 #include "core/svg/SVGTransformList.h" | 33 #include "core/svg/SVGTransformList.h" |
| 35 | 34 |
| 36 namespace WebCore { | 35 namespace WebCore { |
| 37 | 36 |
| 38 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGSpreadMe
thodType>() | 37 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGSpreadMe
thodType>() |
| 39 { | 38 { |
| 40 DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ()); | 39 DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ()); |
| 41 if (entries.isEmpty()) { | 40 if (entries.isEmpty()) { |
| 42 entries.append(std::make_pair(SVGSpreadMethodPad, "pad")); | 41 entries.append(std::make_pair(SVGSpreadMethodPad, "pad")); |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 offset = std::min(std::max(previousOffset, offset), 1.0f); | 128 offset = std::min(std::max(previousOffset, offset), 1.0f); |
| 130 previousOffset = offset; | 129 previousOffset = offset; |
| 131 | 130 |
| 132 stops.append(Gradient::ColorStop(offset, stop->stopColorIncludingOpacity
())); | 131 stops.append(Gradient::ColorStop(offset, stop->stopColorIncludingOpacity
())); |
| 133 } | 132 } |
| 134 | 133 |
| 135 return stops; | 134 return stops; |
| 136 } | 135 } |
| 137 | 136 |
| 138 } | 137 } |
| OLD | NEW |