Home
last modified time | relevance | path

Searched refs:lightingColor (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEDiffuseLighting.cpp31 FEDiffuseLighting::FEDiffuseLighting(Filter* filter, const Color& lightingColor, float surfaceScale, in FEDiffuseLighting() argument
33 …: FELighting(filter, DiffuseLighting, lightingColor, surfaceScale, diffuseConstant, 0, 0, kernelUn… in FEDiffuseLighting()
37 PassRefPtr<FEDiffuseLighting> FEDiffuseLighting::create(Filter* filter, const Color& lightingColor, in create() argument
41 …return adoptRef(new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, kernel… in create()
48 Color FEDiffuseLighting::lightingColor() const in lightingColor() function in WebCore::FEDiffuseLighting
53 bool FEDiffuseLighting::setLightingColor(const Color& lightingColor) in setLightingColor() argument
55 if (m_lightingColor == lightingColor) in setLightingColor()
57 m_lightingColor = lightingColor; in setLightingColor()
DFESpecularLighting.cpp31 FESpecularLighting::FESpecularLighting(Filter* filter, const Color& lightingColor, float surfaceSca… in FESpecularLighting() argument
34 …: FELighting(filter, SpecularLighting, lightingColor, surfaceScale, 0, specularConstant, specularE… in FESpecularLighting()
38 …ssRefPtr<FESpecularLighting> FESpecularLighting::create(Filter* filter, const Color& lightingColor, in create() argument
42 …return adoptRef(new FESpecularLighting(filter, lightingColor, surfaceScale, specularConstant, spec… in create()
50 Color FESpecularLighting::lightingColor() const in lightingColor() function in WebCore::FESpecularLighting
55 bool FESpecularLighting::setLightingColor(const Color& lightingColor) in setLightingColor() argument
57 if (m_lightingColor == lightingColor) in setLightingColor()
59 m_lightingColor = lightingColor; in setLightingColor()
DFESpecularLighting.h36 Color lightingColor() const;
DFEDiffuseLighting.h38 Color lightingColor() const;
DFELighting.cpp40 FELighting::FELighting(Filter* filter, LightingType lightingType, const Color& lightingColor, float… in FELighting() argument
46 , m_lightingColor(lightingColor) in FELighting()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DSVGRenderStyleDefs.cpp154 , lightingColor(SVGRenderStyle::initialLightingColor()) in StyleMiscData()
163 , lightingColor(other.lightingColor) in StyleMiscData()
172 && lightingColor == other.lightingColor in operator ==()
DSVGRenderStyle.cpp192 || misc->lightingColor != other->misc->lightingColor) in diff()
DSVGRenderStyle.h255 if (!(misc->lightingColor == obj)) in setLightingColor()
256 misc.access()->lightingColor = obj; in setLightingColor()
338 const Color& lightingColor() const { return misc->lightingColor; } in lightingColor() function
DSVGRenderStyleDefs.h216 Color lightingColor; variable
DRenderStyle.h1774 Color lightingColor() const { return svgStyle()->lightingColor(); } in lightingColor() function
DRenderStyle.cpp1390 result = lightingColor(); in colorIncludingFallback()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResourceFilterPrimitive.cpp53 if (newStyle->lightingColor() != oldStyle->svgStyle()->lightingColor()) in styleDidChange()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGFEDiffuseLightingElement.cpp130 return diffuseLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor()); in setFilterEffectAttribute()
217 Color color = renderer->style()->svgStyle()->lightingColor(); in build()
DSVGFESpecularLightingElement.cpp139 return specularLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor()); in setFilterEffectAttribute()
228 Color color = renderer->style()->svgStyle()->lightingColor(); in build()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSVGCSSComputedStyleDeclaration.cpp159 return currentColorOrValidColor(*style, svgStyle->lightingColor()); in getSVGPropertyCSSValue()
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
DCSSPropertyAnimation.cpp1063 …pertyWrapperMaybeInvalidColor(CSSPropertyLightingColor, &RenderStyle::lightingColor, &RenderStyle:… in ensurePropertyMap()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleBuilderCustom.cpp2143 HANDLE_SVG_INHERIT_AND_INITIAL(lightingColor, LightingColor); in oldApplyProperty()