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

  /external/webkit/Source/WebCore/platform/graphics/
TiledBackingStore.cpp 81 RefPtr<Tile> currentTile = tileAt(Tile::Coordinate(xCoordinate, yCoordinate));
82 if (!currentTile)
84 currentTile->invalidate(dirtyRect);
141 RefPtr<Tile> currentTile = tileAt(currentCoordinate);
142 if (currentTile && currentTile->isReadyToPaint())
143 currentTile->paint(context, dirtyRect);
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 247 RefPtr<TiledDrawingAreaTile> currentTile = tileAt(TiledDrawingAreaTile::Coordinate(xCoordinate, yCoordinate));
248 if (!currentTile)
250 if (!currentTile->rect().intersects(dirtyRect))
253 if (!currentTile->rect().intersects(coverRect)) {
254 tilesToRemove.append(currentTile->coordinate());
257 currentTile->invalidate(dirtyRect);
342 RefPtr<TiledDrawingAreaTile> currentTile = tileAt(currentCoordinate);
343 if (currentTile && currentTile->isReadyToPaint())
344 currentTile->paint(&gc, dirtyRect)
    [all...]

Completed in 68 milliseconds