OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_diffuseConstant
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDiffuseLightingElement.h
38
SVGAnimatedNumber* diffuseConstant() { return
m_diffuseConstant
.get(); }
53
RefPtr<SVGAnimatedNumber>
m_diffuseConstant
;
SVGFEDiffuseLightingElement.cpp
34
,
m_diffuseConstant
(SVGAnimatedNumber::create(this, SVGNames::diffuseConstantAttr, SVGNumber::create(1)))
39
addToPropertyMap(
m_diffuseConstant
);
72
m_diffuseConstant
->setBaseValueAsString(value, parseError);
96
return diffuseLighting->setDiffuseConstant(
m_diffuseConstant
->currentValue()->value());
174
RefPtr<FilterEffect> effect = FEDiffuseLighting::create(filter, color, m_surfaceScale->currentValue()->value(),
m_diffuseConstant
->currentValue()->value(),
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEDiffuseLighting.cpp
76
return
m_diffuseConstant
;
82
if (
m_diffuseConstant
== diffuseConstant)
84
m_diffuseConstant
= diffuseConstant;
130
<< "diffuseConstant=\"" <<
m_diffuseConstant
<< "\" "
FELighting.h
111
float
m_diffuseConstant
;
FELighting.cpp
47
,
m_diffuseConstant
(std::max(diffuseConstant, 0.0f))
195
lightStrength =
m_diffuseConstant
* paintingData.lightVector.z() / paintingData.lightVectorLength;
213
lightStrength =
m_diffuseConstant
* (normalVector * paintingData.lightVector) / (normalVectorLength * paintingData.lightVectorLength);
450
return adoptRef(SkLightingImageFilter::CreateDistantLitDiffuse(direction, lightColor.rgb(), m_surfaceScale,
m_diffuseConstant
, input.get(), &rect));
458
return adoptRef(SkLightingImageFilter::CreatePointLitDiffuse(skPosition, lightColor.rgb(), m_surfaceScale,
m_diffuseConstant
, input.get(), &rect));
470
return adoptRef(SkLightingImageFilter::CreateSpotLitDiffuse(location, target, specularExponent, limitingConeAngle, lightColor.rgb(), m_surfaceScale,
m_diffuseConstant
, input.get(), &rect));
Completed in 37 milliseconds