HomeSort by relevance Sort by last modified time
    Searched refs:lightingColor (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/filters/
FEDiffuseLighting.cpp 33 FEDiffuseLighting::FEDiffuseLighting(Filter* filter, const Color& lightingColor, float surfaceScale,
35 : FELighting(filter, DiffuseLighting, lightingColor, surfaceScale, diffuseConstant, 0, 0, kernelUnitLengthX, kernelUnitLengthY, lightSource)
39 PassRefPtr<FEDiffuseLighting> FEDiffuseLighting::create(Filter* filter, const Color& lightingColor,
43 return adoptRef(new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, kernelUnitLengthX, kernelUnitLengthY, lightSource));
50 Color FEDiffuseLighting::lightingColor() const
55 bool FEDiffuseLighting::setLightingColor(const Color& lightingColor)
57 if (m_lightingColor == lightingColor)
59 m_lightingColor = lightingColor;
FESpecularLighting.cpp 33 FESpecularLighting::FESpecularLighting(Filter* filter, const Color& lightingColor, float surfaceScale,
36 : FELighting(filter, SpecularLighting, lightingColor, surfaceScale, 0, specularConstant, specularExponent, kernelUnitLengthX, kernelUnitLengthY, lightSource)
40 PassRefPtr<FESpecularLighting> FESpecularLighting::create(Filter* filter, const Color& lightingColor,
44 return adoptRef(new FESpecularLighting(filter, lightingColor, surfaceScale, specularConstant, specularExponent,
52 Color FESpecularLighting::lightingColor() const
57 bool FESpecularLighting::setLightingColor(const Color& lightingColor)
59 if (m_lightingColor == lightingColor)
61 m_lightingColor = lightingColor;
FEDiffuseLighting.h 38 Color lightingColor() const;
FESpecularLighting.h 36 Color lightingColor() const;
FELighting.cpp 43 FELighting::FELighting(Filter* filter, LightingType lightingType, const Color& lightingColor, float surfaceScale,
49 , m_lightingColor(lightingColor)
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyleDefs.cpp 140 , lightingColor(SVGRenderStyle::initialLightingColor())
149 , lightingColor(other.lightingColor)
158 && lightingColor == other.lightingColor