Home | History | Annotate | Download | only in rendering

Lines Matching refs:xDelta

1127     int xDelta = currentMousePosition.x() - sourcePoint.x();
1130 if (abs(xDelta) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon
1131 xDelta = 0;
1135 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta));
1138 void RenderLayer::scrollByRecursively(int xDelta, int yDelta)
1140 if (!xDelta && !yDelta)
1148 int newOffsetX = scrollXOffset() + xDelta;
1172 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta));