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

  /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,
90 float FESpecularLighting::specularExponent() const
95 bool FESpecularLighting::setSpecularExponent(float specularExponent)
97 specularExponent = std::min(std::max(specularExponent, 1.0f), 128.0f);
98 if (m_specularExponent == specularExponent)
100 m_specularExponent = specularExponent;
    [all...]
SpotLightSource.h 33 const FloatPoint3D& direction, float specularExponent, float limitingConeAngle)
35 return adoptRef(new SpotLightSource(position, direction, specularExponent, limitingConeAngle));
47 float specularExponent() const { return m_specularExponent; }
67 float specularExponent, float limitingConeAngle)
71 , m_specularExponent(std::min(std::max(specularExponent, 1.0f), 128.0f))
SpotLightSource.cpp 148 bool SpotLightSource::setSpecularExponent(float specularExponent)
150 specularExponent = std::min(std::max(specularExponent, 1.0f), 128.0f);
151 if (m_specularExponent == specularExponent)
153 m_specularExponent = specularExponent;
176 ts << "[specularExponent=\"" << specularExponent() << "\"]";
FESpecularLighting.h 45 float specularExponent() const;
FELighting.cpp 40 float diffuseConstant, float specularConstant, float specularExponent,
49 , m_specularExponent(std::min(std::max(specularExponent, 1.0f), 128.0f))
464 float specularExponent = spotLightSource->specularExponent();
469 return adoptRef(SkLightingImageFilter::CreateSpotLitSpecular(location, target, specularExponent, limitingConeAngle, lightColor.rgb(), m_surfaceScale, m_specularConstant, m_specularExponent, input.get(), &rect));
470 return adoptRef(SkLightingImageFilter::CreateSpotLitDiffuse(location, target, specularExponent, limitingConeAngle, lightColor.rgb(), m_surfaceScale, m_diffuseConstant, input.get(), &rect));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFESpecularLightingElement.idl 32 readonly attribute SVGAnimatedNumber specularExponent;
SVGFESpotLightElement.idl 33 readonly attribute SVGAnimatedNumber specularExponent;
SVGFESpotLightElement.cpp 42 return SpotLightSource::create(filter->resolve3dPoint(pos), filter->resolve3dPoint(direction), specularExponent()->currentValue()->value(), limitingConeAngle()->currentValue()->value());
SVGFESpecularLightingElement.h 40 SVGAnimatedNumber* specularExponent() { return m_specularExponent.get(); }
SVGFELightElement.h 55 SVGAnimatedNumber* specularExponent() { return m_specularExponent.get(); }
56 const SVGAnimatedNumber* specularExponent() const { return m_specularExponent.get(); }
SVGFEDiffuseLightingElement.cpp 122 return lightSource->setSpecularExponent(lightElement->specularExponent()->currentValue()->value());
SVGFESpecularLightingElement.cpp 129 return lightSource->setSpecularExponent(lightElement->specularExponent()->currentValue()->value());
  /external/chromium_org/third_party/skia/include/effects/
SkLightingImageFilter.h 55 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
65 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
  /external/skia/include/effects/
SkLightingImageFilter.h 55 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
65 const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle,
  /external/chromium_org/third_party/skia/src/effects/
SkLightingImageFilter.cpp 671 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor color)
675 fSpecularExponent(SkScalarPin(specularExponent, kSpecularExponentMin, kSpecularExponentMax))
733 SkScalar specularExponent() const { return fSpecularExponent; }
753 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cosOuterConeAngle, SkScalar cosInnerConeAngle, SkScalar coneScale, const SkPoint3& s, const SkPoint3& color)
757 fSpecularExponent(specularExponent),
    [all...]
  /external/skia/src/effects/
SkLightingImageFilter.cpp 671 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor color)
675 fSpecularExponent(SkScalarPin(specularExponent, kSpecularExponentMin, kSpecularExponentMax))
733 SkScalar specularExponent() const { return fSpecularExponent; }
753 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cosOuterConeAngle, SkScalar cosInnerConeAngle, SkScalar coneScale, const SkPoint3& s, const SkPoint3& color)
757 fSpecularExponent(specularExponent),
    [all...]
  /external/chromium_org/third_party/skia/tests/
ImageFilterTest.cpp 201 SkScalar specularExponent = -1000;
206 location, target, specularExponent, 180,
  /external/skia/tests/
ImageFilterTest.cpp 201 SkScalar specularExponent = -1000;
206 location, target, specularExponent, 180,

Completed in 454 milliseconds