Searched refs:tileSize (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapperTiledBackingStore.cpp72 void TextureMapperTiledBackingStore::createOrDestroyTilesIfNeeded(const FloatSize& size, const IntSize& tileSize, bool hasAlpha) argument
85 for (float y = 0; y < m_size.height(); y += tileSize.height()) {
86 for (float x = 0; x < m_size.width(); x += tileSize.width()) {
87 FloatRect tileRect(x, y, tileSize.width(), tileSize.height());
H A DTextureMapperTiledBackingStore.h51 void createOrDestroyTilesIfNeeded(const FloatSize& backingStoreSize, const IntSize& tileSize, bool hasAlpha);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/
H A DTileGrid.cpp97 IntSize tileSize = m_controller.tileSize(); local
100 if (repaintRectInTileCoords.height() < 2 * tileSize.height() && repaintRectInTileCoords.width() < 2 * tileSize.width()) {
217 IntSize tileSize = m_controller.tileSize(); local
218 IntRect rect(tileIndex.x() * tileSize.width(), tileIndex.y() * tileSize.height(), tileSize.width(), tileSize
231 auto tileSize = m_controller.tileSize(); local
[all...]
H A DTileController.h95 virtual IntSize tileSize() const override { return m_tileSize; }
H A DGraphicsLayerCA.cpp2923 IntSize tileSize = tiledBacking()->tileSize(); local
2925 textStream << "(tile size " << tileSize.width() << " x " << tileSize.height() << ")\n";
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DLegacyTileGrid.h56 static PassOwnPtr<LegacyTileGrid> create(LegacyTileCache* cache, const IntSize& tileSize) { return adoptPtr(new LegacyTileGrid(cache, tileSize)); } argument
H A DLegacyTileGrid.mm45 LegacyTileGrid::LegacyTileGrid(LegacyTileCache* tileCache, const IntSize& tileSize)
48 , m_tileSize(tileSize)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DTiledBacking.h69 virtual IntSize tileSize() const = 0;
H A DTiledBackingStore.h67 IntSize tileSize() { return m_tileSize; } function in class:WebCore::TiledBackingStore
H A DImage.h191 void drawTiled(GraphicsContext*, const FloatRect& dstRect, const FloatPoint& srcPoint, const FloatSize& tileSize, ColorSpace styleColorSpace,
H A DGraphicsContext.cpp604 void GraphicsContext::drawTiledImage(Image* image, ColorSpace colorSpace, const FloatRect& destination, const FloatPoint& source, const FloatSize& tileSize, argument
611 image->drawTiled(this, destination, source, tileSize, colorSpace, imagePaintingOptions.m_compositeOperator, imagePaintingOptions.m_blendMode);
H A DGraphicsContext.h340 void drawTiledImage(Image*, ColorSpace, const FloatRect& destination, const FloatPoint& source, const FloatSize& tileSize,
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderBoxModelObject.cpp841 RefPtr<Image> image = bgImage->image(clientForBackgroundImage, geometry.tileSize());
843 bool useLowQualityScaling = shouldPaintAtLowQuality(context, image.get(), bgLayer, geometry.tileSize());
846 context->drawTiledImage(image.get(), style().colorSpace(), geometry.destRect(), geometry.relativePhase(), geometry.tileSize(), ImagePaintingOptions(compositeOp, bgLayer->blendMode(), ImageOrientationDescription(), useLowQualityScaling));
955 LayoutSize tileSize = positioningAreaSize; local
961 tileSize.setWidth(layerWidth.value());
963 tileSize.setWidth(valueForLength(layerWidth, positioningAreaSize.width()));
966 tileSize.setHeight(layerHeight.value());
968 tileSize.setHeight(valueForLength(layerHeight, positioningAreaSize.height()));
974 tileSize.setWidth(imageIntrinsicSize.width() * tileSize
1060 getSpace(LayoutUnit areaSize, LayoutUnit tileSize) argument
[all...]
H A DRenderBoxModelObject.h193 void getGeometryForBackgroundImage(const RenderLayerModelObject* paintContainer, FloatRect& destRect, FloatPoint& phase, FloatSize& tileSize) const;
230 LayoutSize tileSize() const { return m_tileSize; } function in class:WebCore::RenderBoxModelObject::BackgroundImageGeometry
231 void setTileSize(const LayoutSize& tileSize) { m_tileSize = tileSize; } argument
H A DRenderLayerBacking.cpp1599 FloatSize tileSize; local
1602 toRenderBox(renderer()).getGeometryForBackgroundImage(&m_owningLayer.renderer(), destRect, phase, tileSize);
1603 m_graphicsLayer->setContentsTileSize(tileSize);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/mac/
H A DPlatformCALayerMac.mm861 void PlatformCALayer::setTileSize(const IntSize& tileSize)
867 [static_cast<WebTiledLayer*>(m_layer.get()) setTileSize:tileSize];

Completed in 252 milliseconds