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

Unified Diff: cc/layers/picture_layer_impl.cc

Issue 2160683003: Fix MultiPictureDraw issues with GpuImageDecodeController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 years, 5 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 | cc/playback/raster_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/picture_layer_impl.cc
diff --git a/cc/layers/picture_layer_impl.cc b/cc/layers/picture_layer_impl.cc
index f1b74852d8d9157a32f82dfb2445b39a37e1a45c..12fe4e679d06f0b50e5137284e2b2273f5e59f9c 100644
--- a/cc/layers/picture_layer_impl.cc
+++ b/cc/layers/picture_layer_impl.cc
@@ -545,7 +545,7 @@ void PictureLayerImpl::UpdateRasterSource(
// Only set the image decode controller when we're committing.
if (!pending_set) {
- raster_source_->SetImageDecodeController(
+ raster_source_->set_image_decode_controller(
layer_tree_impl()->image_decode_controller());
}
@@ -641,7 +641,7 @@ void PictureLayerImpl::ReleaseResources() {
void PictureLayerImpl::RecreateResources() {
tilings_ = CreatePictureLayerTilingSet();
if (raster_source_) {
- raster_source_->SetImageDecodeController(
+ raster_source_->set_image_decode_controller(
layer_tree_impl()->image_decode_controller());
}
« no previous file with comments | « no previous file | cc/playback/raster_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698