Searched refs:m_stdY (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
D | FEGaussianBlur.cpp | 54 , m_stdY(y) in FEGaussianBlur() 75 return m_stdY; in stdDeviationY() 80 m_stdY = y; in setStdDeviationY() 275 calculateKernelSize(filter(), kernelSizeX, kernelSizeY, m_stdX, m_stdY); in mapRect() 296 if (!m_stdX && !m_stdY) in applySoftware() 301 calculateKernelSize(filter(), kernelSizeX, kernelSizeY, m_stdX, m_stdY); in applySoftware() 323 float stdY = filter()->applyVerticalScale(m_stdY); in applySkia() 342 float stdY = filter()->applyVerticalScale(m_stdY); in createImageFilter() 352 ts << " stdDeviation=\"" << m_stdX << ", " << m_stdY << "\"]\n"; in externalRepresentation()
|
D | FEDropShadow.cpp | 39 , m_stdY(stdY) in FEDropShadow() 82 FEGaussianBlur::calculateKernelSize(filter, kernelSizeX, kernelSizeY, m_stdX, m_stdY); in mapRect() 99 FloatSize blurRadius(filter->applyHorizontalScale(m_stdX), filter->applyVerticalScale(m_stdY)); in applySoftware() 129 float stdY = filter()->applyHorizontalScale(m_stdY); in createImageFilter() 140 …ts << " stdDeviation=\"" << m_stdX << ", " << m_stdY << "\" dx=\"" << m_dx << "\" dy=\"" << m_dy <… in externalRepresentation()
|
D | FEDropShadow.h | 37 float stdDeviationY() const { return m_stdY; } in stdDeviationY() 38 void setStdDeviationY(float stdY) { m_stdY = stdY; } in setStdDeviationY() 66 float m_stdY; variable
|
D | FEGaussianBlur.h | 80 float m_stdY; variable
|