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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEDiffuseLighting.cpp 31 FEDiffuseLighting::FEDiffuseLighting(Filter* filter, const Color& lightingColor, float surfaceScale,
33 : FELighting(filter, DiffuseLighting, lightingColor, surfaceScale, diffuseConstant, 0, 0, kernelUnitLengthX, kernelUnitLengthY, lightSource)
37 PassRefPtr<FEDiffuseLighting> FEDiffuseLighting::create(Filter* filter, const Color& lightingColor,
41 return adoptRef(new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, kernelUnitLengthX, kernelUnitLengthY, lightSource));
48 Color FEDiffuseLighting::lightingColor() const
53 bool FEDiffuseLighting::setLightingColor(const Color& lightingColor)
55 if (m_lightingColor == lightingColor)
57 m_lightingColor = lightingColor;
FESpecularLighting.cpp 31 FESpecularLighting::FESpecularLighting(Filter* filter, const Color& lightingColor, float surfaceScale,
34 : FELighting(filter, SpecularLighting, lightingColor, surfaceScale, 0, specularConstant, specularExponent, kernelUnitLengthX, kernelUnitLengthY, lightSource)
38 PassRefPtr<FESpecularLighting> FESpecularLighting::create(Filter* filter, const Color& lightingColor,
42 return adoptRef(new FESpecularLighting(filter, lightingColor, surfaceScale, specularConstant, specularExponent,
50 Color FESpecularLighting::lightingColor() const
55 bool FESpecularLighting::setLightingColor(const Color& lightingColor)
57 if (m_lightingColor == lightingColor)
59 m_lightingColor = lightingColor;
FEDiffuseLighting.h 38 Color lightingColor() const;
FESpecularLighting.h 36 Color lightingColor() const;
FELighting.cpp 39 FELighting::FELighting(Filter* filter, LightingType lightingType, const Color& lightingColor, float surfaceScale,
45 , m_lightingColor(lightingColor)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceFilterPrimitive.cpp 54 if (newStyle.lightingColor() != oldStyle->svgStyle().lightingColor())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyleDefs.cpp 138 , lightingColor(SVGRenderStyle::initialLightingColor())
147 , lightingColor(other.lightingColor)
156 && lightingColor == other.lightingColor
SVGRenderStyle.cpp 192 || misc->lightingColor != other->misc->lightingColor)
SVGRenderStyle.h 238 if (!(misc->lightingColor == obj))
239 misc.access()->lightingColor = obj;
320 const Color& lightingColor() const { return misc->lightingColor; }
SVGRenderStyleDefs.h 204 Color lightingColor;
RenderStyle.cpp     [all...]
RenderStyle.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDiffuseLightingElement.cpp 91 return diffuseLighting->setLightingColor(renderer->style()->svgStyle().lightingColor());
171 Color color = renderer->style()->svgStyle().lightingColor();
SVGFESpecularLightingElement.cpp 96 return specularLighting->setLightingColor(renderer->style()->svgStyle().lightingColor());
178 Color color = renderer->style()->svgStyle().lightingColor();
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSPropertyEquality.cpp 156 return a.lightingColor() == b.lightingColor();
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 177 return currentColorOrValidColor(*style, svgStyle.lightingColor());

Completed in 222 milliseconds