HomeSort by relevance Sort by last modified time
    Searched defs:specularConstant (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFESpecularLightingElement.h 40 SVGAnimatedNumber* specularConstant() { return m_specularConstant.get(); }
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FESpecularLighting.cpp 32 float specularConstant, float specularExponent, float kernelUnitLengthX,
34 : FELighting(filter, SpecularLighting, lightingColor, surfaceScale, 0, specularConstant, specularExponent, kernelUnitLengthX, kernelUnitLengthY, lightSource)
39 float surfaceScale, float specularConstant, float specularExponent,
42 return adoptRef(new FESpecularLighting(filter, lightingColor, surfaceScale, specularConstant, specularExponent,
76 float FESpecularLighting::specularConstant() const
81 bool FESpecularLighting::setSpecularConstant(float specularConstant)
83 specularConstant = std::max(specularConstant, 0.0f);
84 if (m_specularConstant == specularConstant)
86 m_specularConstant = specularConstant;
    [all...]

Completed in 25 milliseconds