OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:diffuseConstant
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDiffuseLightingElement.h
38
SVGAnimatedNumber*
diffuseConstant
() { return m_diffuseConstant.get(); }
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEDiffuseLighting.cpp
32
float
diffuseConstant
, float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource)
33
: FELighting(filter, DiffuseLighting, lightingColor, surfaceScale,
diffuseConstant
, 0, 0, kernelUnitLengthX, kernelUnitLengthY, lightSource)
38
float surfaceScale, float
diffuseConstant
, float kernelUnitLengthX,
41
return adoptRef(new FEDiffuseLighting(filter, lightingColor, surfaceScale,
diffuseConstant
, kernelUnitLengthX, kernelUnitLengthY, lightSource));
74
float FEDiffuseLighting::
diffuseConstant
() const
79
bool FEDiffuseLighting::setDiffuseConstant(float
diffuseConstant
)
81
diffuseConstant
= std::max(
diffuseConstant
, 0.0f);
82
if (m_diffuseConstant ==
diffuseConstant
)
84
m_diffuseConstant =
diffuseConstant
;
[
all
...]
Completed in 31 milliseconds