OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lightingColor
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEDiffuseLighting.cpp
31
FEDiffuseLighting::FEDiffuseLighting(Filter* filter, const Color&
lightingColor
, float surfaceScale,
33
: FELighting(filter, DiffuseLighting,
lightingColor
, surfaceScale, diffuseConstant, 0, 0, kernelUnitLengthX, kernelUnitLengthY, lightSource)
37
PassRefPtr<FEDiffuseLighting> FEDiffuseLighting::create(Filter* filter, const Color&
lightingColor
,
41
return adoptRef(new FEDiffuseLighting(filter,
lightingColor
, surfaceScale, diffuseConstant, kernelUnitLengthX, kernelUnitLengthY, lightSource));
48
Color FEDiffuseLighting::
lightingColor
() const
53
bool FEDiffuseLighting::setLightingColor(const Color&
lightingColor
)
55
if (m_lightingColor ==
lightingColor
)
57
m_lightingColor =
lightingColor
;
FESpecularLighting.cpp
31
FESpecularLighting::FESpecularLighting(Filter* filter, const Color&
lightingColor
, float surfaceScale,
34
: FELighting(filter, SpecularLighting,
lightingColor
, surfaceScale, 0, specularConstant, specularExponent, kernelUnitLengthX, kernelUnitLengthY, lightSource)
38
PassRefPtr<FESpecularLighting> FESpecularLighting::create(Filter* filter, const Color&
lightingColor
,
42
return adoptRef(new FESpecularLighting(filter,
lightingColor
, surfaceScale, specularConstant, specularExponent,
50
Color FESpecularLighting::
lightingColor
() const
55
bool FESpecularLighting::setLightingColor(const Color&
lightingColor
)
57
if (m_lightingColor ==
lightingColor
)
59
m_lightingColor =
lightingColor
;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyleDefs.h
204
Color
lightingColor
;
SVGRenderStyle.h
238
if (!(misc->
lightingColor
== obj))
239
misc.access()->
lightingColor
= obj;
320
const Color&
lightingColor
() const { return misc->
lightingColor
; }
RenderStyle.h
[
all
...]
Completed in 2069 milliseconds