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

Unified Diff: cc/TiledLayerChromium.cpp

Issue 10968047: cc_unittests fails on several platforms with 158148 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « cc/ShaderChromium.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/TiledLayerChromium.cpp
===================================================================
--- cc/TiledLayerChromium.cpp (revision 158168)
+++ cc/TiledLayerChromium.cpp (working copy)
@@ -215,20 +215,13 @@
// FIXME: This should not ever be null.
if (!tile)
continue;
-
tile->isInUseOnImpl = false;
-
if (!tile->managedTexture()->haveBackingTexture()) {
- // Evicted tiles get deleted from both layers
invalidTiles.append(tile);
continue;
}
-
- if (!tile->validForFrame) {
- // Invalidated tiles are set so they can get different debug colors.
- tiledLayer->pushInvalidTile(i, j);
+ if (!tile->validForFrame)
continue;
- }
tiledLayer->pushTileProperties(i, j, tile->managedTexture()->resourceId(), tile->opaqueRect());
tile->isInUseOnImpl = true;
« no previous file with comments | « cc/ShaderChromium.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698