| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 4 * Copyright (C) 2013 Google Inc. All rights reserved. | 4 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 #include "core/platform/graphics/Gradient.h" | 29 #include "core/platform/graphics/Gradient.h" |
| 30 | 30 |
| 31 #include "core/platform/graphics/Color.h" | 31 #include "core/platform/graphics/Color.h" |
| 32 #include "core/platform/graphics/FloatRect.h" | |
| 33 #include "core/platform/graphics/GraphicsContext.h" | 32 #include "core/platform/graphics/GraphicsContext.h" |
| 34 #include "core/platform/graphics/skia/SkiaUtils.h" | 33 #include "core/platform/graphics/skia/SkiaUtils.h" |
| 34 #include "platform/geometry/FloatRect.h" |
| 35 #include "third_party/skia/include/core/SkColorShader.h" | 35 #include "third_party/skia/include/core/SkColorShader.h" |
| 36 #include "third_party/skia/include/core/SkShader.h" | 36 #include "third_party/skia/include/core/SkShader.h" |
| 37 #include "third_party/skia/include/effects/SkGradientShader.h" | 37 #include "third_party/skia/include/effects/SkGradientShader.h" |
| 38 #include "wtf/HashFunctions.h" | 38 #include "wtf/HashFunctions.h" |
| 39 #include "wtf/StringHasher.h" | 39 #include "wtf/StringHasher.h" |
| 40 | 40 |
| 41 using WTF::pairIntHash; | 41 using WTF::pairIntHash; |
| 42 | 42 |
| 43 namespace WebCore { | 43 namespace WebCore { |
| 44 | 44 |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 if (!m_gradient) { | 355 if (!m_gradient) { |
| 356 // use last color, since our "geometry" was degenerate (e.g. radius==0) | 356 // use last color, since our "geometry" was degenerate (e.g. radius==0) |
| 357 m_gradient = adoptRef(new SkColorShader(colors[countUsed - 1])); | 357 m_gradient = adoptRef(new SkColorShader(colors[countUsed - 1])); |
| 358 } else { | 358 } else { |
| 359 m_gradient->setLocalMatrix(m_gradientSpaceTransformation); | 359 m_gradient->setLocalMatrix(m_gradientSpaceTransformation); |
| 360 } | 360 } |
| 361 return m_gradient.get(); | 361 return m_gradient.get(); |
| 362 } | 362 } |
| 363 | 363 |
| 364 } //namespace | 364 } //namespace |
| OLD | NEW |