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

Side by Side Diff: Source/core/svg/SVGFELightElement.h

Issue 337903003: Map light-source oBB-relative coordinates to the user-space of the filter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com> 4 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com>
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
22 #ifndef SVGFELightElement_h 22 #ifndef SVGFELightElement_h
23 #define SVGFELightElement_h 23 #define SVGFELightElement_h
24 24
25 #include "core/SVGNames.h" 25 #include "core/SVGNames.h"
26 #include "core/svg/SVGAnimatedNumber.h" 26 #include "core/svg/SVGAnimatedNumber.h"
27 #include "core/svg/SVGElement.h" 27 #include "core/svg/SVGElement.h"
28 #include "platform/graphics/filters/LightSource.h" 28 #include "platform/graphics/filters/LightSource.h"
29 29
30 namespace WebCore { 30 namespace WebCore {
31 31
32 class Filter;
33
32 class SVGFELightElement : public SVGElement { 34 class SVGFELightElement : public SVGElement {
33 public: 35 public:
34 virtual PassRefPtr<LightSource> lightSource() const = 0; 36 virtual PassRefPtr<LightSource> lightSource(Filter*) const = 0;
35 static SVGFELightElement* findLightElement(const SVGElement&); 37 static SVGFELightElement* findLightElement(const SVGElement&);
36 static PassRefPtr<LightSource> findLightSource(const SVGElement&);
37 38
38 SVGAnimatedNumber* azimuth() { return m_azimuth.get(); } 39 SVGAnimatedNumber* azimuth() { return m_azimuth.get(); }
39 const SVGAnimatedNumber* azimuth() const { return m_azimuth.get(); } 40 const SVGAnimatedNumber* azimuth() const { return m_azimuth.get(); }
40 SVGAnimatedNumber* elevation() { return m_elevation.get(); } 41 SVGAnimatedNumber* elevation() { return m_elevation.get(); }
41 const SVGAnimatedNumber* elevation() const { return m_elevation.get(); } 42 const SVGAnimatedNumber* elevation() const { return m_elevation.get(); }
42 SVGAnimatedNumber* x() { return m_x.get(); } 43 SVGAnimatedNumber* x() { return m_x.get(); }
43 const SVGAnimatedNumber* x() const { return m_x.get(); } 44 const SVGAnimatedNumber* x() const { return m_x.get(); }
44 SVGAnimatedNumber* y() { return m_y.get(); } 45 SVGAnimatedNumber* y() { return m_y.get(); }
45 const SVGAnimatedNumber* y() const { return m_y.get(); } 46 const SVGAnimatedNumber* y() const { return m_y.get(); }
46 SVGAnimatedNumber* z() { return m_z.get(); } 47 SVGAnimatedNumber* z() { return m_z.get(); }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 inline bool isSVGFELightElement(const Node& node) 83 inline bool isSVGFELightElement(const Node& node)
83 { 84 {
84 return node.hasTagName(SVGNames::feDistantLightTag) || node.hasTagName(SVGNa mes::fePointLightTag) || node.hasTagName(SVGNames::feSpotLightTag); 85 return node.hasTagName(SVGNames::feDistantLightTag) || node.hasTagName(SVGNa mes::fePointLightTag) || node.hasTagName(SVGNames::feSpotLightTag);
85 } 86 }
86 87
87 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGFELightElement); 88 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGFELightElement);
88 89
89 } // namespace WebCore 90 } // namespace WebCore
90 91
91 #endif 92 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698