OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_specularExponent
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFESpecularLightingElement.h
41
SVGAnimatedNumber* specularExponent() { return
m_specularExponent
.get(); }
59
RefPtr<SVGAnimatedNumber>
m_specularExponent
;
SVGFELightElement.h
58
SVGAnimatedNumber* specularExponent() { return
m_specularExponent
.get(); }
59
const SVGAnimatedNumber* specularExponent() const { return
m_specularExponent
.get(); }
82
RefPtr<SVGAnimatedNumber>
m_specularExponent
;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
SpotLightSource.h
42
return adoptRef(new SpotLightSource(position, direction,
m_specularExponent
, m_limitingConeAngle));
47
float specularExponent() const { return
m_specularExponent
; }
67
,
m_specularExponent
(std::min(std::max(specularExponent, 1.0f), 128.0f))
75
float
m_specularExponent
;
FESpecularLighting.cpp
92
return
m_specularExponent
;
98
if (
m_specularExponent
== specularExponent)
100
m_specularExponent
= specularExponent;
147
<< "specularExponent=\"" <<
m_specularExponent
<< "\"]\n";
FELighting.h
113
float
m_specularExponent
;
Completed in 28 milliseconds