Home | History | Annotate | Download | only in chromium

Lines Matching refs:layerRect

150     const IntRect layerRect = contentRectToLayerRect(contentRect);
152 left = m_tilingData.tileXIndexFromSrcCoord(layerRect.x());
153 top = m_tilingData.tileYIndexFromSrcCoord(layerRect.y());
154 right = m_tilingData.tileXIndexFromSrcCoord(layerRect.maxX() - 1);
155 bottom = m_tilingData.tileYIndexFromSrcCoord(layerRect.maxY() - 1);
161 IntRect layerRect(pos, contentRect.size());
165 layerRect = IntRect(IntPoint(0, 0), IntSize(contentRect.width() + pos.x(), contentRect.height() + pos.y()));
166 return layerRect;
169 IntRect LayerTilerChromium::layerRectToContentRect(const IntRect& layerRect) const
171 IntRect contentRect = layerRect;
193 IntRect layerRect = m_tilingData.tileBoundsWithBorder(index);
194 layerRect.setSize(m_tileSize);
195 return layerRect;
207 const IntRect layerRect = contentRectToLayerRect(contentRect);
217 bound.intersect(layerRect);
424 IntRect layerRect = contentRectToLayerRect(contentRect);
425 IntSize rectSize = IntSize(layerRect.maxX(), layerRect.maxY());