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

  /external/webkit/Source/WebCore/platform/graphics/qt/
FloatRectQt.cpp 49 FloatRect normalizedRect = *this;
52 normalizedRect.setX(x() + width());
53 normalizedRect.setWidth(-width());
56 normalizedRect.setY(y() + height());
57 normalizedRect.setHeight(-height());
59 return normalizedRect;
GraphicsContextQt.cpp 672 QRectF normalizedRect = rect.normalized();
677 QPainter* shadowPainter = hasShadow() ? shadow->beginShadowLayer(this, normalizedRect) : 0;
679 drawRepeatPattern(shadowPainter, image, normalizedRect, m_state.fillPattern->repeatX(), m_state.fillPattern->repeatY());
681 shadowPainter->fillRect(normalizedRect, shadow->m_color);
684 drawRepeatPattern(p, image, normalizedRect, m_state.fillPattern->repeatX(), m_state.fillPattern->repeatY());
688 QPainter* shadowPainter = hasShadow() ? shadow->beginShadowLayer(this, normalizedRect) : 0;
690 shadowPainter->fillRect(normalizedRect, brush);
692 shadowPainter->fillRect(normalizedRect, shadow->m_color);
695 p->fillRect(normalizedRect, brush);
699 QPainter* shadowPainter = shadow->beginShadowLayer(this, normalizedRect);
    [all...]

Completed in 96 milliseconds