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

  /external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp 72 , m_tileSize(tileSize)
168 int tileColumns = ceilf(constrainedSize.width / m_tileSize.width);
169 int tileRows = ceilf(constrainedSize.height / m_tileSize.height);
186 constrainedSize.width = tileColumns * m_tileSize.width;
187 constrainedSize.height = tileRows * m_tileSize.height;
235 int numTilesHorizontal = ceil(m_constrainedSize.width / m_tileSize.width);
236 int numTilesVertical = ceil(m_constrainedSize.height / m_tileSize.height);
257 CACFLayerSetPosition(tile, CGPointMake(i * m_tileSize.width, j * m_tileSize.height));
258 int width = min(m_tileSize.width, m_constrainedSize.width - i * m_tileSize.width)
    [all...]
WebTiledLayer.h 76 CGSize m_tileSize;
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.h 80 CGSize m_tileSize;
PlatformCALayerWinInternal.cpp 46 : m_tileSize(CGSizeMake(cTiledLayerTileSize, cTiledLayerTileSize))
348 int tileColumns = ceilf(constrainedSize.width / m_tileSize.width);
349 int tileRows = ceilf(constrainedSize.height / m_tileSize.height);
366 constrainedSize.width = tileColumns * m_tileSize.width;
367 constrainedSize.height = tileRows * m_tileSize.height;
420 int numTilesHorizontal = ceil(m_constrainedSize.width / m_tileSize.width);
421 int numTilesVertical = ceil(m_constrainedSize.height / m_tileSize.height);
442 CACFLayerSetPosition(tile, CGPointMake(i * m_tileSize.width, j * m_tileSize.height));
443 int width = min(m_tileSize.width, m_constrainedSize.width - i * m_tileSize.width)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
TiledBackingStore.h 56 IntSize tileSize() { return m_tileSize; }
111 IntSize m_tileSize;
TiledBackingStore.cpp 37 , m_tileSize(defaultTileWidth, defaultTileHeight)
55 m_tileSize = size;
342 IntRect rect(coordinate.x() * m_tileSize.width(),
343 coordinate.y() * m_tileSize.height(),
344 m_tileSize.width(),
345 m_tileSize.height());
353 int x = point.x() / m_tileSize.width();
354 int y = point.y() / m_tileSize.height();
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.cpp 85 if (m_tileSize == size)
90 m_tileSize = size;
91 m_tilePixels = adoptArrayPtr(new uint8_t[m_tileSize.width() * m_tileSize.height() * 4]);
194 layerRect.setSize(m_tileSize);
254 if (!tile->texture()->isValid(m_tileSize, GraphicsContext3D::RGBA))
257 tile->texture()->reserve(m_tileSize, GraphicsContext3D::RGBA);
323 if (!tile->texture()->reserve(m_tileSize, GraphicsContext3D::RGBA)) {
409 float tileWidth = static_cast<float>(m_tileSize.width());
410 float tileHeight = static_cast<float>(m_tileSize.height())
    [all...]
LayerTilerChromium.h 137 IntSize m_tileSize;
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 57 , m_tileSize(defaultTileWidth, defaultTileHeight)
209 if (m_tileSize == size)
211 m_tileSize = size;
568 IntRect rect(coordinate.x() * m_tileSize.width(),
569 coordinate.y() * m_tileSize.height(),
570 m_tileSize.width(),
571 m_tileSize.height());
579 int x = point.x() / m_tileSize.width();
580 int y = point.y() / m_tileSize.height();
TiledDrawingAreaProxy.h 86 WebCore::IntSize tileSize() { return m_tileSize; }
172 WebCore::IntSize m_tileSize;
  /external/webkit/Source/WebCore/platform/graphics/qt/
TileQt.cpp 101 m_backBuffer = new QPixmap(m_backingStore->m_tileSize.width(), m_backingStore->m_tileSize.height());

Completed in 369 milliseconds