Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1441)

Unified Diff: cc/picture_layer_tiling.h

Issue 11555002: cc: Fix invalidation problems in impl-side painting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | cc/picture_layer_tiling_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/picture_layer_tiling.h
diff --git a/cc/picture_layer_tiling.h b/cc/picture_layer_tiling.h
index 4eeb9ba3476d1eb10755728160aa7e64dc68a3ce..5d46c2f7ee7eca5285d0b7008318625c47b1a3ff 100644
--- a/cc/picture_layer_tiling.h
+++ b/cc/picture_layer_tiling.h
@@ -63,7 +63,7 @@ class CC_EXPORT PictureLayerTiling {
Tile* operator*() const { return current_tile_; }
Iterator& operator++();
- operator bool() const { return current_tile_; }
+ operator bool() const { return tile_j_ <= bottom_; }
private:
PictureLayerTiling* tiling_;
« no previous file with comments | « no previous file | cc/picture_layer_tiling_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698