Searched refs:stdY (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEDropShadow.cpp36 FEDropShadow::FEDropShadow(Filter* filter, float stdX, float stdY, float dx, float dy, const Color& shadowColor, float shadowOpacity) argument
39 , m_stdY(stdY)
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));
113 float stdY = filter()->applyVerticalScale(m_stdY); local
116 return adoptRef(SkDropShadowImageFilter::Create(SkFloatToScalar(dx), SkFloatToScalar(dy), SkFloatToScalar(stdX), SkFloatToScalar(stdY), color.rgb(), input.get(), &cropRect));
H A DFEDropShadow.h38 void setStdDeviationY(float stdY) { m_stdY = stdY; } argument
H A DFEGaussianBlur.cpp154 float stdY = filter()->applyVerticalScale(m_stdY); local
160 paint.setImageFilter(SkBlurImageFilter::Create(stdX, stdY))->unref();
173 float stdY = filter()->applyVerticalScale(m_stdY); local
175 return adoptRef(SkBlurImageFilter::Create(SkFloatToScalar(stdX), SkFloatToScalar(stdY), input.get(), &rect));

Completed in 469 milliseconds