Index: cc/base/tiling_data.cc |
diff --git a/cc/base/tiling_data.cc b/cc/base/tiling_data.cc |
index 6921a8b870d037afa6c40f3c39bbc0e15171a40c..00ebb5799f5da34d408ccf8ffe71918cc060ee62 100644 |
--- a/cc/base/tiling_data.cc |
+++ b/cc/base/tiling_data.cc |
@@ -488,15 +488,16 @@ TilingData::SpiralDifferenceIterator::SpiralDifferenceIterator( |
} |
gfx::Rect consider(consider_rect); |
- gfx::Rect ignore(ignore_rect); |
- gfx::Rect center(center_rect); |
consider.Intersect(tiling_data_->tiling_rect()); |
- ignore.Intersect(tiling_data_->tiling_rect()); |
if (consider.IsEmpty()) { |
done(); |
return; |
} |
+ gfx::Rect center(center_rect); |
+ gfx::Rect ignore(ignore_rect); |
+ ignore.Intersect(tiling_data_->tiling_rect()); |
+ |
consider_left_ = |
tiling_data_->FirstBorderTileXIndexFromSrcCoord(consider.x()); |
consider_top_ = tiling_data_->FirstBorderTileYIndexFromSrcCoord(consider.y()); |