OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_specularconstant
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FESpecularLighting.cpp
78
return
m_specularConstant
;
83
if (
m_specularConstant
== specularConstant)
85
m_specularConstant
= specularConstant;
144
<< "specualConstant=\"" <<
m_specularConstant
<< "\" "
FELighting.cpp
49
,
m_specularConstant
(specularConstant)
194
lightStrength =
m_specularConstant
* halfwayVector.z() / halfwayVectorLength;
196
lightStrength =
m_specularConstant
* powf(halfwayVector.z() / halfwayVectorLength, m_specularExponent);
212
lightStrength =
m_specularConstant
* (normalVector * halfwayVector) / (normalVectorLength * halfwayVectorLength);
214
lightStrength =
m_specularConstant
* powf((normalVector * halfwayVector) / (normalVectorLength * halfwayVectorLength), m_specularExponent);
425
if (
m_specularConstant
> 0)
426
return adoptRef(SkLightingImageFilter::CreateDistantLitSpecular(direction, m_lightingColor.rgb(), m_surfaceScale,
m_specularConstant
, m_specularExponent, input.get(), &rect));
433
if (
m_specularConstant
> 0)
434
return adoptRef(SkLightingImageFilter::CreatePointLitSpecular(skPosition, m_lightingColor.rgb(), m_surfaceScale,
m_specularConstant
, m_specularExponent, input.get(), &rect));
445
if (
m_specularConstant
> 0
[
all
...]
FELighting.h
116
float
m_specularConstant
;
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFESpecularLightingElement.cpp
54
,
m_specularConstant
(1)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FELightingNEON.h
161
floatArguments.diffuseConstant =
m_specularConstant
;
Completed in 370 milliseconds