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

  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.cpp 59 m_absolutePaintRect = IntRect();
62 m_absolutePaintRect.unite(m_inputEffects.at(i)->absolutePaintRect());
65 m_absolutePaintRect.intersect(enclosingIntRect(m_maxEffectRect));
71 IntPoint location = m_absolutePaintRect.location();
73 return IntRect(location, m_absolutePaintRect.size());
78 return IntRect(IntPoint(srcRect.x() - m_absolutePaintRect.x(),
79 srcRect.y() - m_absolutePaintRect.y()), srcRect.size());
104 m_imageBufferResult = ImageBuffer::create(m_absolutePaintRect.size(), ColorSpaceLinearRGB);
105 IntRect destinationRect(IntPoint(), m_absolutePaintRect.size());
132 if (rect.x() < 0 || rect.y() < 0 || rect.maxX() > m_absolutePaintRect.width() || rect.maxY() > m_absolutePaintRect.height()
    [all...]
FilterEffect.h 76 IntRect absolutePaintRect() const { return m_absolutePaintRect; }
77 void setAbsolutePaintRect(const IntRect& absolutePaintRect) { m_absolutePaintRect = absolutePaintRect; }
129 IntRect m_absolutePaintRect;

Completed in 467 milliseconds