Home | History | Annotate | Download | only in rendering

Lines Matching refs:cachedOffset

284 void RenderLayer::updateLayerPositions(UpdateLayerPositionsFlags flags, IntPoint* cachedOffset)
290 if (cachedOffset) {
297 cachedOffset = 0; // If our cached offset is invalid make sure it's not passed to any of our children
299 oldCachedOffset = *cachedOffset;
304 cachedOffset->move(m_x, m_y); // Fast case
309 *cachedOffset = IntPoint(x, y);
316 if (cachedOffset) {
317 x += cachedOffset->x();
318 y += cachedOffset->y();
346 IntRect newOutlineBox = renderer()->outlineBoundsForRepaint(repaintContainer, cachedOffset);
383 child->updateLayerPositions(flags, cachedOffset);
394 if (cachedOffset)
395 *cachedOffset = oldCachedOffset;