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

  /external/chromium_org/third_party/WebKit/Source/core/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 44 FELighting::FELighting(Filter* filter, LightingType lightingType, const Color& lightingColor, float surfaceScale,
50 , m_lightingColor(lightingColor)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyleDefs.cpp 154 , lightingColor(SVGRenderStyle::initialLightingColor())
163 , lightingColor(other.lightingColor)
172 && lightingColor == other.lightingColor
SVGRenderStyle.cpp 190 || misc->lightingColor != other->misc->lightingColor)
SVGRenderStyle.h 253 if (!(misc->lightingColor == obj))
254 misc.access()->lightingColor = obj;
336 const Color& lightingColor() const { return misc->lightingColor; }
SVGRenderStyleDefs.h 205 Color lightingColor;
RenderStyle.cpp     [all...]
RenderStyle.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceFilterPrimitive.cpp 53 if (newStyle->lightingColor() != oldStyle->svgStyle()->lightingColor())
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDiffuseLightingElement.cpp 133 return diffuseLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor());
220 Color color = renderer->style()->svgStyle()->lightingColor();
SVGFESpecularLightingElement.cpp 142 return specularLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor());
231 Color color = renderer->style()->svgStyle()->lightingColor();
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 141 return currentColorOrValidColor(style, svgStyle->lightingColor());
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderCustom.cpp     [all...]

Completed in 219 milliseconds