HomeSort by relevance Sort by last modified time
    Searched full:m_divisor (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEConvolveMatrixElement.h 42 SVGAnimatedNumber* divisor() { return m_divisor.get(); }
64 RefPtr<SVGAnimatedNumber> m_divisor; member in class:WebCore::FINAL
SVGFEConvolveMatrixElement.cpp 48 , m_divisor(SVGAnimatedNumber::create(this, SVGNames::divisorAttr, SVGNumber::create()))
61 addToPropertyMap(m_divisor);
104 m_divisor->setBaseValueAsString(value, parseError);
138 return convolveMatrix->setDivisor(m_divisor->currentValue()->value());
230 float divisorValue = m_divisor->currentValue()->value();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEConvolveMatrix.cpp 42 , m_divisor(divisor)
95 return m_divisor;
101 if (m_divisor == divisor)
103 m_divisor = divisor;
271 // m_divisor cannot be 0, SVGFEConvolveMatrixElement ensures this
272 ASSERT(m_divisor);
304 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
355 // m_divisor cannot be 0, SVGFEConvolveMatrixElement ensures this
356 ASSERT(m_divisor);
389 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray)
    [all...]
FEConvolveMatrix.h 123 float m_divisor; member in class:WebCore::FEConvolveMatrix

Completed in 148 milliseconds