HomeSort by relevance Sort by last modified time
    Searched refs:kernelUnitLength (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEConvolveMatrix.cpp 39 const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix)
46 , m_kernelUnitLength(kernelUnitLength)
56 const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix)
58 return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
146 FloatPoint FEConvolveMatrix::kernelUnitLength() const
151 bool FEConvolveMatrix::setKernelUnitLength(const FloatPoint& kernelUnitLength)
153 ASSERT(kernelUnitLength.x() > 0);
154 ASSERT(kernelUnitLength.y() > 0);
155 if (m_kernelUnitLength == kernelUnitLength)
157 m_kernelUnitLength = kernelUnitLength;
    [all...]
FEConvolveMatrix.h 66 FloatPoint kernelUnitLength() const;

Completed in 1054 milliseconds