Home | History | Annotate | Download | only in effects

Lines Matching refs:SkSpotLight

701 class SkSpotLight : public SkLight {
703 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor color)
731 return new SkSpotLight(location, target, fSpecularExponent, fCosOuterConeAngle, fCosInnerConeAngle, fConeScale, s, color());
771 SkSpotLight(SkReadBuffer& buffer) : INHERITED(buffer) {
785 SkSpotLight(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cosOuterConeAngle, SkScalar cosInnerConeAngle, SkScalar coneScale, const SkPoint3& s, const SkPoint3& color)
811 const SkSpotLight& o = static_cast<const SkSpotLight&>(other);
835 const SkScalar SkSpotLight::kSpecularExponentMin = 1.0f;
836 const SkScalar SkSpotLight::kSpecularExponentMax = 128.0f;
855 case SkLight::kSpot_LightType: return SkNEW_ARGS(SkSpotLight, (buffer));
901 SkAutoTUnref<SkLight> light(SkNEW_ARGS(SkSpotLight, (location, target, specularExponent,
938 SkAutoTUnref<SkLight> light(SkNEW_ARGS(SkSpotLight, (location, target, specularExponent,
1053 lightBitmap<DiffuseLightingType, SkSpotLight>(lightingType, transformedLight, src, dst, surfaceScale(), bounds);
1172 lightBitmap<SpecularLightingType, SkSpotLight>(lightingType, transformedLight, src, dst, surfaceScale(), bounds);
1212 return SkNEW_ARGS(SkSpotLight, (random_point3(random),
1658 const SkSpotLight* spotLight = static_cast<const SkSpotLight *>(light);