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

Unified Diff: cc/layers/picture_layer_impl.cc

Issue 2161633003: Fix MultiPictureDraw issues with GpuImageDecodeController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: fix unit test build in branch 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 0cf42f07a13c9a9a842b2b8699e8804a2c172be9..b126e42e88e2eb678e33543c57e122f76525b914 100644
--- a/cc/layers/picture_layer_impl.cc
+++ b/cc/layers/picture_layer_impl.cc
@@ -556,7 +556,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());
}
@@ -652,7 +652,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