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
SVGRenderStyle.h 227 if (!(misc->lightingColor == obj))
228 misc.access()->lightingColor = obj;
308 Color lightingColor() const { return misc->lightingColor; }
SVGRenderStyle.cpp 189 || misc->lightingColor != other->misc->lightingColor)
SVGRenderStyleDefs.h 192 Color lightingColor;
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceFilterPrimitive.cpp 60 if (newStyle->lightingColor() != oldStyle->svgStyle()->lightingColor())
  /external/webkit/Source/WebCore/svg/
SVGFEDiffuseLightingElement.cpp 95 return diffuseLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor());
209 Color color = filterStyle->svgStyle()->lightingColor();
SVGFESpecularLightingElement.cpp 100 return specularLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor());
221 Color color = filterStyle->svgStyle()->lightingColor();
  /external/webkit/Source/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 132 return CSSPrimitiveValue::createColor(svgStyle->lightingColor().rgb());
SVGCSSStyleSelector.cpp 479 HANDLE_INHERIT_AND_INITIAL(lightingColor, LightingColor);

Completed in 221 milliseconds