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

Unified Diff: cc/tiled_layer.h

Issue 11028132: cc: The recent texture manager bug uncovered some unnecessary code (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Make haveTexturesForTilesConst Created 8 years, 2 months 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
Index: cc/tiled_layer.h
diff --git a/cc/tiled_layer.h b/cc/tiled_layer.h
index 616339129e9bbcf7c5d2fc24286bd85fd43e8b69..ce50cb63591a4fbdc1a337ff9f32632bc8cee491 100644
--- a/cc/tiled_layer.h
+++ b/cc/tiled_layer.h
@@ -81,7 +81,7 @@ private:
void markOcclusionsAndRequestTextures(int left, int top, int right, int bottom, const CCOcclusionTracker*);
bool updateTiles(int left, int top, int right, int bottom, CCTextureUpdateQueue&, const CCOcclusionTracker*, CCRenderingStats&, bool& didPaint);
- bool haveTexturesForTiles(int left, int top, int right, int bottom, bool ignoreOcclusions);
+ bool haveTexturesForTiles(int left, int top, int right, int bottom, bool ignoreOcclusions) const;
enne (OOO) 2012/10/18 18:26:33 <3. I've wanted that change for a while.
IntRect markTilesForUpdate(int left, int top, int right, int bottom, bool ignoreOcclusions);
void updateTileTextures(const IntRect& paintRect, int left, int top, int right, int bottom, CCTextureUpdateQueue&, const CCOcclusionTracker*, CCRenderingStats&);
« no previous file with comments | « cc/prioritized_texture.cc ('k') | cc/tiled_layer.cc » ('j') | cc/tiled_layer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698