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/core/platform/graphics/filters/
FEConvolveMatrix.cpp 44 const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix)
51 , m_kernelUnitLength(kernelUnitLength)
61 const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix)
63 return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
143 FloatPoint FEConvolveMatrix::kernelUnitLength() const
148 bool FEConvolveMatrix::setKernelUnitLength(const FloatPoint& kernelUnitLength)
150 ASSERT(kernelUnitLength.x() > 0);
151 ASSERT(kernelUnitLength.y() > 0);
152 if (m_kernelUnitLength == kernelUnitLength)
154 m_kernelUnitLength = kernelUnitLength;
    [all...]
FEConvolveMatrix.h 66 FloatPoint kernelUnitLength() const;

Completed in 49 milliseconds