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

  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 634 IntRect trRect = m_data->mapRect(rect);
635 TransparentLayerDC transparentDC(m_data, trRect, &rect);
639 trRect.move(transparentDC.toShift());
658 if (trRect.width() <= 0)
659 trRect.setWidth(1);
660 if (trRect.height() <= 0)
661 trRect.setHeight(1);
663 Rectangle(dc, trRect.x(), trRect.y(), trRect.maxX(), trRect.maxY())
    [all...]
SharedBitmap.cpp 450 FloatRect trRect = tf.mapRect(destRect);
455 trRect.intersect(FloatRect(clipBox.left, clipBox.top, clipBox.right - clipBox.left, clipBox.bottom - clipBox.top));
465 trRect.intersect(FloatRect(rect->left, rect->top, rect->right - rect->left, rect->bottom - rect->top));
470 if (trRect.width() <= 0 || trRect.height() <= 0)
473 trRect.inflate(1);
474 IntRect visibleDstRect = enclosingIntRect(tf.inverse().mapRect(trRect));
480 trRect = tf.mapRect(visibleDstRect);
482 stableRound(trRect.x()),
483 stableRound(trRect.y())
    [all...]

Completed in 103 milliseconds