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

Unified Diff: cc/resources/picture.cc

Issue 13581011: cc: Temporarily disable tile grid optimization (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/picture.cc
diff --git a/cc/resources/picture.cc b/cc/resources/picture.cc
index 6b4abb8f4af22ca98f25997542d36555a596101d..6168918efeefe6a7bbc293af1f945b2594a7a6b8 100644
--- a/cc/resources/picture.cc
+++ b/cc/resources/picture.cc
@@ -87,8 +87,9 @@ void Picture::Record(ContentLayerClient* painter,
// Record() should only be called once.
DCHECK(!picture_);
DCHECK(!tile_grid_info.fTileInterval.isEmpty());
- picture_ = skia::AdoptRef(new SkTileGridPicture(
- layer_rect_.width(), layer_rect_.height(), tile_grid_info));
+ // TODO(enne): Turn back on tile grid after
+ // https://code.google.com/p/skia/issues/detail?id=1209 is fixed.
+ picture_ = skia::AdoptRef(new SkPicture());
SkCanvas* canvas = picture_->beginRecording(
layer_rect_.width(),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698