Searched defs:shadowOpacity (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEDropShadow.h49 float shadowOpacity() const { return m_shadowOpacity; } function in class:WebCore::FEDropShadow
50 void setShadowOpacity(float shadowOpacity) { m_shadowOpacity = shadowOpacity; } argument
H A DFEDropShadow.cpp36 FEDropShadow::FEDropShadow(Filter* filter, float stdX, float stdY, float dx, float dy, const Color& shadowColor, float shadowOpacity) argument
43 , m_shadowOpacity(shadowOpacity)
47 PassRefPtr<FEDropShadow> FEDropShadow::create(Filter* filter, float stdX, float stdY, float dx, float dy, const Color& shadowColor, float shadowOpacity) argument
49 return adoptRef(new FEDropShadow(filter, stdX, stdY, dx, dy, shadowColor, shadowOpacity));

Completed in 225 milliseconds