Home
last modified time | relevance | path

Searched refs:m_tileSize (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
DWebTiledLayer.cpp72 , m_tileSize(tileSize) in WebTiledLayer()
168 int tileColumns = ceilf(constrainedSize.width / m_tileSize.width); in constrainedSize()
169 int tileRows = ceilf(constrainedSize.height / m_tileSize.height); in constrainedSize()
186 constrainedSize.width = tileColumns * m_tileSize.width; in constrainedSize()
187 constrainedSize.height = tileRows * m_tileSize.height; in constrainedSize()
235 int numTilesHorizontal = ceil(m_constrainedSize.width / m_tileSize.width); in updateTiles()
236 int numTilesVertical = ceil(m_constrainedSize.height / m_tileSize.height); in updateTiles()
257 CACFLayerSetPosition(tile, CGPointMake(i * m_tileSize.width, j * m_tileSize.height)); in updateTiles()
258 int width = min(m_tileSize.width, m_constrainedSize.width - i * m_tileSize.width); in updateTiles()
259 int height = min(m_tileSize.height, m_constrainedSize.height - j * m_tileSize.height); in updateTiles()
[all …]
DWebTiledLayer.h76 CGSize m_tileSize; variable
/external/webkit/Source/WebCore/platform/graphics/ca/win/
DPlatformCALayerWinInternal.cpp46 : m_tileSize(CGSizeMake(cTiledLayerTileSize, cTiledLayerTileSize)) in PlatformCALayerWinInternal()
348 int tileColumns = ceilf(constrainedSize.width / m_tileSize.width); in constrainedSize()
349 int tileRows = ceilf(constrainedSize.height / m_tileSize.height); in constrainedSize()
366 constrainedSize.width = tileColumns * m_tileSize.width; in constrainedSize()
367 constrainedSize.height = tileRows * m_tileSize.height; in constrainedSize()
420 int numTilesHorizontal = ceil(m_constrainedSize.width / m_tileSize.width); in updateTiles()
421 int numTilesVertical = ceil(m_constrainedSize.height / m_tileSize.height); in updateTiles()
442 CACFLayerSetPosition(tile, CGPointMake(i * m_tileSize.width, j * m_tileSize.height)); in updateTiles()
443 int width = min(m_tileSize.width, m_constrainedSize.width - i * m_tileSize.width); in updateTiles()
444 int height = min(m_tileSize.height, m_constrainedSize.height - j * m_tileSize.height); in updateTiles()
[all …]
DPlatformCALayerWinInternal.h80 CGSize m_tileSize; variable
/external/webkit/Source/WebCore/platform/graphics/
DTiledBackingStore.cpp37 , m_tileSize(defaultTileWidth, defaultTileHeight) in TiledBackingStore()
55 m_tileSize = size; in setTileSize()
342 IntRect rect(coordinate.x() * m_tileSize.width(), in tileRectForCoordinate()
343 coordinate.y() * m_tileSize.height(), in tileRectForCoordinate()
344 m_tileSize.width(), in tileRectForCoordinate()
345 m_tileSize.height()); in tileRectForCoordinate()
353 int x = point.x() / m_tileSize.width(); in tileCoordinateForPoint()
354 int y = point.y() / m_tileSize.height(); in tileCoordinateForPoint()
DTiledBackingStore.h56 IntSize tileSize() { return m_tileSize; } in tileSize()
111 IntSize m_tileSize; variable
/external/webkit/Source/WebCore/platform/graphics/chromium/
DLayerTilerChromium.cpp85 if (m_tileSize == size) in setTileSize()
90 m_tileSize = size; in setTileSize()
91 m_tilePixels = adoptArrayPtr(new uint8_t[m_tileSize.width() * m_tileSize.height() * 4]); in setTileSize()
194 layerRect.setSize(m_tileSize); in tileLayerRect()
254 if (!tile->texture()->isValid(m_tileSize, GraphicsContext3D::RGBA)) in update()
257 tile->texture()->reserve(m_tileSize, GraphicsContext3D::RGBA); in update()
323 if (!tile->texture()->reserve(m_tileSize, GraphicsContext3D::RGBA)) { in updateFromPixels()
409 float tileWidth = static_cast<float>(m_tileSize.width()); in draw()
410 float tileHeight = static_cast<float>(m_tileSize.height()); in draw()
DLayerTilerChromium.h137 IntSize m_tileSize; variable
/external/webkit/Source/WebKit2/UIProcess/
DTiledDrawingAreaProxy.cpp57 , m_tileSize(defaultTileWidth, defaultTileHeight) in TiledDrawingAreaProxy()
209 if (m_tileSize == size) in setTileSize()
211 m_tileSize = size; in setTileSize()
568 IntRect rect(coordinate.x() * m_tileSize.width(), in tileRectForCoordinate()
569 coordinate.y() * m_tileSize.height(), in tileRectForCoordinate()
570 m_tileSize.width(), in tileRectForCoordinate()
571 m_tileSize.height()); in tileRectForCoordinate()
579 int x = point.x() / m_tileSize.width(); in tileCoordinateForPoint()
580 int y = point.y() / m_tileSize.height(); in tileCoordinateForPoint()
DTiledDrawingAreaProxy.h86 WebCore::IntSize tileSize() { return m_tileSize; } in tileSize()
172 WebCore::IntSize m_tileSize; variable
/external/webkit/Source/WebCore/platform/graphics/qt/
DTileQt.cpp101 …m_backBuffer = new QPixmap(m_backingStore->m_tileSize.width(), m_backingStore->m_tileSize.height()… in updateBackBuffer()