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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFESpecularLightingElement.h 40 SVGAnimatedNumber* specularConstant() { return m_specularConstant.get(); }
58 RefPtr<SVGAnimatedNumber> m_specularConstant;
SVGFESpecularLightingElement.cpp 35 , m_specularConstant(SVGAnimatedNumber::create(this, SVGNames::specularConstantAttr, SVGNumber::create(1)))
41 addToPropertyMap(m_specularConstant);
77 m_specularConstant->setBaseValueAsString(value, parseError);
101 return specularLighting->setSpecularConstant(m_specularConstant->currentValue()->value());
181 RefPtr<FilterEffect> effect = FESpecularLighting::create(filter, color, m_surfaceScale->currentValue()->value(), m_specularConstant->currentValue()->value(),
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FESpecularLighting.cpp 78 return m_specularConstant;
84 if (m_specularConstant == specularConstant)
86 m_specularConstant = specularConstant;
146 << "specualConstant=\"" << m_specularConstant << "\" "
FELighting.h 112 float m_specularConstant;
FELighting.cpp 48 , m_specularConstant(std::max(specularConstant, 0.0f))
201 lightStrength = m_specularConstant * halfwayVector.z() / halfwayVectorLength;
203 lightStrength = m_specularConstant * powf(halfwayVector.z() / halfwayVectorLength, m_specularExponent);
219 lightStrength = m_specularConstant * (normalVector * halfwayVector) / (normalVectorLength * halfwayVectorLength);
221 lightStrength = m_specularConstant * powf((normalVector * halfwayVector) / (normalVectorLength * halfwayVectorLength), m_specularExponent);
448 if (m_specularConstant > 0)
449 return adoptRef(SkLightingImageFilter::CreateDistantLitSpecular(direction, lightColor.rgb(), m_surfaceScale, m_specularConstant, m_specularExponent, input.get(), &rect));
456 if (m_specularConstant > 0)
457 return adoptRef(SkLightingImageFilter::CreatePointLitSpecular(skPosition, lightColor.rgb(), m_surfaceScale, m_specularConstant, m_specularExponent, input.get(), &rect));
468 if (m_specularConstant > 0
    [all...]

Completed in 257 milliseconds