HomeSort by relevance Sort by last modified time
    Searched defs:firstTileX (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/
TiledPage.cpp 144 void TiledPage::prepareRow(bool goingLeft, int tilesInRow, int firstTileX, int y, const SkIRect& tileBounds)
147 int x = firstTileX;
240 int firstTileX = tileBounds.fLeft;
255 firstTileX -= expandX;
271 if (firstTileX < 0) {
272 nbTilesWidth += firstTileX;
273 firstTileX = 0;
279 nbTilesWidth = std::min(nbTilesWidth, maxX - firstTileX);
291 prepareRow(goingLeft, nbTilesWidth, firstTileX, firstTileY + i, tileBounds);
  /external/webkit/Source/WebKit/android/jni/
PictureSet.cpp 360 int firstTileX = rect.fLeft / mBucketSizeX;
365 for (int i = firstTileX; i <= lastTileX; i++) {
393 int firstTileX = rect.fLeft / mBucketSizeX;
399 firstTileX, firstTileY,
402 for (int i = firstTileX; i <= lastTileX; i++) {
411 int left = (i == firstTileX) ? rect.fLeft - deltaX : 0;
    [all...]

Completed in 635 milliseconds