OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lightVectorLength
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DistantLightSource.cpp
45
paintingData.
lightVectorLength
= 1;
LightSource.h
54
float
lightVectorLength
;
PointLightSource.cpp
47
paintingData.
lightVectorLength
= paintingData.lightVector.length();
SpotLightSource.cpp
70
paintingData.
lightVectorLength
= paintingData.lightVector.length();
72
float cosineOfAngle = (paintingData.lightVector * paintingData.directionVector) / paintingData.
lightVectorLength
;
FELighting.cpp
195
lightStrength = m_diffuseConstant * paintingData.lightVector.z() / paintingData.
lightVectorLength
;
198
halfwayVector.setZ(halfwayVector.z() + paintingData.
lightVectorLength
);
213
lightStrength = m_diffuseConstant * (normalVector * paintingData.lightVector) / (normalVectorLength * paintingData.
lightVectorLength
);
216
halfwayVector.setZ(halfwayVector.z() + paintingData.
lightVectorLength
);
Completed in 191 milliseconds