| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 6 * Copyright (C) 2013 Google Inc. All rights reserved. | 6 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 | 25 |
| 26 #include "core/platform/graphics/filters/FEFlood.h" | 26 #include "core/platform/graphics/filters/FEFlood.h" |
| 27 | 27 |
| 28 #include "SkColorFilter.h" | 28 #include "SkColorFilter.h" |
| 29 #include "SkColorFilterImageFilter.h" | 29 #include "SkColorFilterImageFilter.h" |
| 30 #include "SkFlattenableBuffers.h" | 30 #include "SkFlattenableBuffers.h" |
| 31 #include "core/platform/graphics/GraphicsContext.h" | 31 #include "core/platform/graphics/GraphicsContext.h" |
| 32 #include "core/platform/graphics/filters/Filter.h" | |
| 33 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" | 32 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" |
| 34 #include "platform/text/TextStream.h" | 33 #include "platform/text/TextStream.h" |
| 35 #include "third_party/skia/include/core/SkDevice.h" | 34 #include "third_party/skia/include/core/SkDevice.h" |
| 36 | 35 |
| 37 namespace WebCore { | 36 namespace WebCore { |
| 38 | 37 |
| 39 FEFlood::FEFlood(Filter* filter, const Color& floodColor, float floodOpacity) | 38 FEFlood::FEFlood(Filter* filter, const Color& floodColor, float floodOpacity) |
| 40 : FilterEffect(filter) | 39 : FilterEffect(filter) |
| 41 , m_floodColor(floodColor) | 40 , m_floodColor(floodColor) |
| 42 , m_floodOpacity(floodOpacity) | 41 , m_floodOpacity(floodOpacity) |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 { | 98 { |
| 100 writeIndent(ts, indent); | 99 writeIndent(ts, indent); |
| 101 ts << "[feFlood"; | 100 ts << "[feFlood"; |
| 102 FilterEffect::externalRepresentation(ts); | 101 FilterEffect::externalRepresentation(ts); |
| 103 ts << " flood-color=\"" << floodColor().nameForRenderTreeAsText() << "\" " | 102 ts << " flood-color=\"" << floodColor().nameForRenderTreeAsText() << "\" " |
| 104 << "flood-opacity=\"" << floodOpacity() << "\"]\n"; | 103 << "flood-opacity=\"" << floodOpacity() << "\"]\n"; |
| 105 return ts; | 104 return ts; |
| 106 } | 105 } |
| 107 | 106 |
| 108 } // namespace WebCore | 107 } // namespace WebCore |
| OLD | NEW |