Home | History | Annotate | Download | only in graphics

Lines Matching defs:TiledBackingStore

21 #include "TiledBackingStore.h"
33 TiledBackingStore::TiledBackingStore(TiledBackingStoreClient* client)
35 , m_tileBufferUpdateTimer(new TileTimer(this, &TiledBackingStore::tileBufferUpdateTimerFired))
36 , m_tileCreationTimer(new TileTimer(this, &TiledBackingStore::tileCreationTimerFired))
47 TiledBackingStore::~TiledBackingStore()
53 void TiledBackingStore::setTileSize(const IntSize& size)
60 void TiledBackingStore::setTileCreationDelay(double delay)
65 void TiledBackingStore::setKeepAndCoverAreaMultipliers(const FloatSize& keepMultiplier, const FloatSize& coverMultiplier)
72 void TiledBackingStore::invalidate(const IntRect& contentsDirtyRect)
91 void TiledBackingStore::updateTileBuffers()
125 void TiledBackingStore::paint(GraphicsContext* context, const IntRect& rect)
156 void TiledBackingStore::adjustVisibleRect()
166 void TiledBackingStore::setContentsScale(float scale)
178 void TiledBackingStore::commitScaleChange()
186 double TiledBackingStore::tileDistance(const IntRect& viewport, const Tile::Coordinate& tileCoordinate)
199 void TiledBackingStore::createTiles()
269 void TiledBackingStore::dropOverhangingTiles()
287 void TiledBackingStore::dropTilesOutsideRect(const IntRect& keepRect)
304 PassRefPtr<Tile> TiledBackingStore::tileAt(const Tile::Coordinate& coordinate) const
309 void TiledBackingStore::setTile(const Tile::Coordinate& coordinate, PassRefPtr<Tile> tile)
314 void TiledBackingStore::removeTile(const Tile::Coordinate& coordinate)
319 IntRect TiledBackingStore::mapToContents(const IntRect& rect) const
327 IntRect TiledBackingStore::mapFromContents(const IntRect& rect) const
335 IntRect TiledBackingStore::contentsRect() const
340 IntRect TiledBackingStore::tileRectForCoordinate(const Tile::Coordinate& coordinate) const
351 Tile::Coordinate TiledBackingStore::tileCoordinateForPoint(const IntPoint& point) const
359 void TiledBackingStore::startTileBufferUpdateTimer()
366 void TiledBackingStore::tileBufferUpdateTimerFired(TileTimer*)
371 void TiledBackingStore::startTileCreationTimer()
378 void TiledBackingStore::tileCreationTimerFired(TileTimer*)
383 void TiledBackingStore::setContentsFrozen(bool freeze)