/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 | 40 FELighting::FELighting(Filter* filter, LightingType lightingType, const Color& lightingColor, float surfaceScale, 46 , 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.h | 255 if (!(misc->lightingColor == obj)) 256 misc.access()->lightingColor = obj; 338 const Color& lightingColor() const { return misc->lightingColor; }
|
SVGRenderStyle.cpp | 192 || misc->lightingColor != other->misc->lightingColor)
|
SVGRenderStyleDefs.h | 216 Color lightingColor;
|
RenderStyle.h | [all...] |
RenderStyle.cpp | [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 | 130 return diffuseLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor()); 217 Color color = renderer->style()->svgStyle()->lightingColor();
|
SVGFESpecularLightingElement.cpp | 139 return specularLighting->setLightingColor(renderer->style()->svgStyle()->lightingColor()); 228 Color color = renderer->style()->svgStyle()->lightingColor();
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SVGCSSComputedStyleDeclaration.cpp | 159 return currentColorOrValidColor(*style, svgStyle->lightingColor());
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleBuilderCustom.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
CSSPropertyAnimation.cpp | [all...] |