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

Issue 367833003: cc: Start using raster/eviction iterators. (Closed)

Created:
6 years, 5 months ago by vmpstr
Modified:
6 years, 2 months ago
CC:
chromium-reviews, cc-bugs_chromium.org, jbedley, danakj
Project:
chromium
Visibility:
Public.

Description

cc: Start using raster/eviction iterators. This patch enables iterators for use in tile prioritization. It's a fairly large change from the way we did prioritization before, so any regressions/problems that include this patch in the revision range can most likely be blamed on this patch. That being said, this also includes a performance optimization that does not update tile priorities for all tiles. On one of the benchmarks (thread_times) with key_mobile_sites, this shows a 2-10% improvement in the fast path time. NOTE TO PERF SHERIFFS ===================== Please assign any bugs that regress performance as a result of this patch to me. There shouldn't be much, but who knows. NOTE TO PEOPLE BISECTING REGRESSIONS ==================================== If there's a correctness issue that regressed in a range that includes this patch, please assign it to me if you suspect this patch is at fault, or at least cc me if you suspect some other patch. BUG=387150, 329686 R=enne, reveman, danakj Committed: https://crrev.com/56ace236c9fc5e0f312818c870a56d373f143db5 Cr-Commit-Position: refs/heads/master@{#298962}

Patch Set 1 #

Patch Set 2 : broken tests #

Patch Set 3 : debug #

Patch Set 4 : fixes #

Patch Set 5 : #

Total comments: 31

Patch Set 6 : update #

Patch Set 7 : update #

Patch Set 8 : update #

Total comments: 13

Patch Set 9 : review #

Patch Set 10 : rebase #

Patch Set 11 : update #

Patch Set 12 : perf test fix #

Total comments: 12

Patch Set 13 : update #

Patch Set 14 : #

Patch Set 15 : update #

Total comments: 31

Patch Set 16 : update #

Total comments: 6

Patch Set 17 : #

Total comments: 13

Patch Set 18 : rebase #

Patch Set 19 : rebase #

Patch Set 20 : #

Total comments: 1

Patch Set 21 : rebase + fix #

Total comments: 3

Patch Set 22 : rebase #

Total comments: 60

Patch Set 23 : update #

Patch Set 24 : #

Patch Set 25 : update #

Patch Set 26 : update #

Patch Set 27 : git log #

Patch Set 28 : rebase #

Total comments: 42

Patch Set 29 : rebase #

Patch Set 30 : comments #

Patch Set 31 : +test #

Total comments: 3

Patch Set 32 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+889 lines, -2623 lines) Patch
M cc/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2 chunks +0 lines, -3 lines 0 comments Download
M cc/cc.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +0 lines, -2 lines 0 comments Download
M cc/cc_tests.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +0 lines, -1 line 0 comments Download
M cc/debug/rasterize_and_record_benchmark_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +4 lines, -0 lines 0 comments Download
M cc/layers/heads_up_display_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 3 chunks +7 lines, -13 lines 0 comments Download
M cc/layers/picture_layer_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 3 chunks +2 lines, -6 lines 0 comments Download
M cc/layers/picture_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 13 chunks +41 lines, -183 lines 0 comments Download
M cc/layers/picture_layer_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 29 chunks +146 lines, -97 lines 0 comments Download
M cc/resources/memory_history.h View 1 chunk +4 lines, -9 lines 0 comments Download
M cc/resources/memory_history.cc View 1 chunk +1 line, -1 line 0 comments Download
M cc/resources/picture_layer_tiling.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 10 chunks +37 lines, -22 lines 0 comments Download
M cc/resources/picture_layer_tiling.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 17 chunks +165 lines, -134 lines 0 comments Download
M cc/resources/picture_layer_tiling_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 9 chunks +24 lines, -22 lines 0 comments Download
M cc/resources/picture_layer_tiling_set.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +2 lines, -4 lines 0 comments Download
M cc/resources/picture_layer_tiling_set.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +8 lines, -11 lines 0 comments Download
M cc/resources/picture_layer_tiling_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 42 chunks +133 lines, -138 lines 0 comments Download
D cc/resources/prioritized_tile_set.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -60 lines 0 comments Download
D cc/resources/prioritized_tile_set.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +0 lines, -155 lines 0 comments Download
D cc/resources/prioritized_tile_set_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +0 lines, -774 lines 0 comments Download
M cc/resources/tile.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 5 chunks +23 lines, -5 lines 0 comments Download
M cc/resources/tile.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +3 lines, -16 lines 0 comments Download
M cc/resources/tile_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 8 chunks +36 lines, -34 lines 0 comments Download
M cc/resources/tile_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 16 chunks +210 lines, -420 lines 0 comments Download
M cc/resources/tile_manager_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 5 chunks +21 lines, -485 lines 0 comments Download
M cc/resources/tile_priority.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 6 chunks +2 lines, -13 lines 0 comments Download
M cc/test/fake_picture_layer_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +4 lines, -1 line 0 comments Download
M cc/test/fake_picture_layer_tiling_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/fake_picture_layer_tiling_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +4 lines, -0 lines 0 comments Download
M cc/test/fake_tile_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +0 lines, -1 line 0 comments Download
M cc/test/fake_tile_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -3 lines 0 comments Download
M cc/test/test_tile_priorities.h View 1 1 chunk +0 lines, -5 lines 0 comments Download
M cc/test/test_tile_priorities.cc View 1 1 chunk +0 lines, -5 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +1 line, -0 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +4 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +1 line, -0 lines 0 comments Download
M cc/trees/layer_tree_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 62 (1 generated)
vmpstr
Please take a look. I've tried my best to annotate the changes I've made, but ...
6 years, 5 months ago (2014-07-02 23:51:29 UTC) #1
enne (OOO)
https://codereview.chromium.org/367833003/diff/80001/cc/layers/heads_up_display_layer_impl.cc File cc/layers/heads_up_display_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/80001/cc/layers/heads_up_display_layer_impl.cc#newcode1 cc/layers/heads_up_display_layer_impl.cc:1: // Copyright 2012 The Chromium Authors. All rights reserved. ...
6 years, 5 months ago (2014-07-07 19:41:59 UTC) #2
reveman
https://codereview.chromium.org/367833003/diff/80001/cc/resources/tile.h File cc/resources/tile.h (right): https://codereview.chromium.org/367833003/diff/80001/cc/resources/tile.h#newcode64 cc/resources/tile.h:64: void UnsetRequiredForActivation(); I think these functions should be replaced ...
6 years, 5 months ago (2014-07-07 20:48:13 UTC) #3
vmpstr
PTAL https://codereview.chromium.org/367833003/diff/80001/cc/layers/heads_up_display_layer_impl.cc File cc/layers/heads_up_display_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/80001/cc/layers/heads_up_display_layer_impl.cc#newcode1 cc/layers/heads_up_display_layer_impl.cc:1: // Copyright 2012 The Chromium Authors. All rights ...
6 years, 5 months ago (2014-07-07 23:24:48 UTC) #4
vmpstr
The numbers on the current patch are kind of on par with tip of tree ...
6 years, 5 months ago (2014-07-07 23:29:29 UTC) #5
reveman
https://codereview.chromium.org/367833003/diff/80001/cc/resources/tile_manager.cc File cc/resources/tile_manager.cc (right): https://codereview.chromium.org/367833003/diff/80001/cc/resources/tile_manager.cc#newcode1170 cc/resources/tile_manager.cc:1170: Initialize(); On 2014/07/07 23:24:47, vmpstr wrote: > On 2014/07/07 ...
6 years, 5 months ago (2014-07-08 00:13:12 UTC) #6
vmpstr
On 2014/07/08 00:13:12, reveman wrote: > https://codereview.chromium.org/367833003/diff/80001/cc/resources/tile_manager.cc > File cc/resources/tile_manager.cc (right): > > https://codereview.chromium.org/367833003/diff/80001/cc/resources/tile_manager.cc#newcode1170 > ...
6 years, 5 months ago (2014-07-08 00:31:58 UTC) #7
reveman
On 2014/07/08 00:31:58, vmpstr wrote: > On 2014/07/08 00:13:12, reveman wrote: > > > https://codereview.chromium.org/367833003/diff/80001/cc/resources/tile_manager.cc ...
6 years, 5 months ago (2014-07-08 02:20:19 UTC) #8
vmpstr
PTAL. Here's a summary of changes from the last reviewed patch set: - Moved tile ...
6 years, 5 months ago (2014-07-09 00:05:36 UTC) #9
vmpstr
PS tests are broken, or rather don't compile yet. David, I just want to see ...
6 years, 5 months ago (2014-07-09 00:10:29 UTC) #10
reveman
This is close to what I had in mind. I think that if we make ...
6 years, 5 months ago (2014-07-09 02:21:10 UTC) #11
vmpstr
PTAL. tldr: I'd like to keep prepare outside of tile manager. Preparing a queue is ...
6 years, 5 months ago (2014-07-09 18:35:38 UTC) #12
reveman
I think we're on the same page in terms of how the tile manager should ...
6 years, 5 months ago (2014-07-09 20:47:51 UTC) #13
vmpstr
https://codereview.chromium.org/367833003/diff/140001/cc/resources/tile_manager.h File cc/resources/tile_manager.h (right): https://codereview.chromium.org/367833003/diff/140001/cc/resources/tile_manager.h#newcode48 cc/resources/tile_manager.h:48: virtual EvictionTileQueue* GetEvictionQueue(TreePriority tree_priority) = 0; On 2014/07/09 20:47:51, ...
6 years, 5 months ago (2014-07-09 22:46:50 UTC) #14
reveman
https://codereview.chromium.org/367833003/diff/140001/cc/resources/tile_manager.h File cc/resources/tile_manager.h (right): https://codereview.chromium.org/367833003/diff/140001/cc/resources/tile_manager.h#newcode48 cc/resources/tile_manager.h:48: virtual EvictionTileQueue* GetEvictionQueue(TreePriority tree_priority) = 0; On 2014/07/09 22:46:50, ...
6 years, 5 months ago (2014-07-10 11:28:24 UTC) #15
vmpstr
PTAL. I renamed Get*Queue to Rebuild*Queue, which aligns with what we've discussed offline. I do ...
6 years, 5 months ago (2014-07-11 18:39:37 UTC) #16
reveman
https://codereview.chromium.org/367833003/diff/220001/cc/resources/eviction_tile_priority_queue.cc File cc/resources/eviction_tile_priority_queue.cc (right): https://codereview.chromium.org/367833003/diff/220001/cc/resources/eviction_tile_priority_queue.cc#newcode63 cc/resources/eviction_tile_priority_queue.cc:63: Initialize(); I think this lazy init stuff should be ...
6 years, 5 months ago (2014-07-14 15:52:38 UTC) #17
vmpstr
PTAL. Mostly just replies to comments... https://codereview.chromium.org/367833003/diff/220001/cc/resources/eviction_tile_priority_queue.cc File cc/resources/eviction_tile_priority_queue.cc (right): https://codereview.chromium.org/367833003/diff/220001/cc/resources/eviction_tile_priority_queue.cc#newcode63 cc/resources/eviction_tile_priority_queue.cc:63: Initialize(); On 2014/07/14 ...
6 years, 5 months ago (2014-07-14 18:10:45 UTC) #18
reveman
https://codereview.chromium.org/367833003/diff/220001/cc/resources/raster_tile_priority_queue.cc File cc/resources/raster_tile_priority_queue.cc (right): https://codereview.chromium.org/367833003/diff/220001/cc/resources/raster_tile_priority_queue.cc#newcode216 cc/resources/raster_tile_priority_queue.cc:216: } // namespace cc On 2014/07/14 18:10:44, vmpstr wrote: ...
6 years, 5 months ago (2014-07-14 19:09:46 UTC) #19
vmpstr
> We can't maintain a persistent queue with the current design, as it's a priority ...
6 years, 5 months ago (2014-07-14 19:45:24 UTC) #20
vmpstr
PTAL
6 years, 5 months ago (2014-07-15 00:03:09 UTC) #21
reveman
https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc File cc/resources/eviction_tile_priority_queue.cc (right): https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc#newcode27 cc/resources/eviction_tile_priority_queue.cc:27: paired_picture_layers_ = paired_picture_layers; Hm, you're making a copy of ...
6 years, 5 months ago (2014-07-15 01:51:10 UTC) #22
vmpstr
Just replies to comments, I will update the patch in the morning. https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc File cc/resources/eviction_tile_priority_queue.cc ...
6 years, 5 months ago (2014-07-15 05:36:27 UTC) #23
reveman
https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc File cc/resources/eviction_tile_priority_queue.cc (right): https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc#newcode27 cc/resources/eviction_tile_priority_queue.cc:27: paired_picture_layers_ = paired_picture_layers; On 2014/07/15 05:36:26, vmpstr wrote: > ...
6 years, 5 months ago (2014-07-15 16:49:57 UTC) #24
vmpstr
PTAL https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc File cc/resources/eviction_tile_priority_queue.cc (right): https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc#newcode27 cc/resources/eviction_tile_priority_queue.cc:27: paired_picture_layers_ = paired_picture_layers; On 2014/07/15 16:49:56, reveman wrote: ...
6 years, 5 months ago (2014-07-15 17:47:21 UTC) #25
reveman
https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc File cc/resources/eviction_tile_priority_queue.cc (right): https://codereview.chromium.org/367833003/diff/280001/cc/resources/eviction_tile_priority_queue.cc#newcode57 cc/resources/eviction_tile_priority_queue.cc:57: } On 2014/07/15 17:47:20, vmpstr wrote: > On 2014/07/15 ...
6 years, 5 months ago (2014-07-15 19:44:38 UTC) #26
vmpstr
David, Your comments here are starting to look more and more like they are addressing ...
6 years, 5 months ago (2014-07-15 20:38:17 UTC) #27
reveman
I'm hoping to see a clean implementations of these new tile priority queue classes before ...
6 years, 5 months ago (2014-07-15 22:31:55 UTC) #28
vmpstr
Still some testing to be done, but PTAL. This is so far what's left to ...
6 years, 4 months ago (2014-08-14 23:50:14 UTC) #29
reveman
not familiar with the occlusion code. let me know if you want me to review ...
6 years, 4 months ago (2014-08-17 18:26:06 UTC) #30
vmpstr
On 2014/08/17 18:26:06, reveman wrote: > not familiar with the occlusion code. let me know ...
6 years, 4 months ago (2014-08-18 18:04:52 UTC) #31
vmpstr
+danakj for reals
6 years, 4 months ago (2014-08-18 18:05:22 UTC) #32
danakj
Please update the patch title and description
6 years, 4 months ago (2014-08-18 18:42:03 UTC) #33
danakj
https://codereview.chromium.org/367833003/diff/320001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/320001/cc/layers/picture_layer_impl.cc#newcode597 cc/layers/picture_layer_impl.cc:597: const PictureLayerImpl* layer = this; nit: active_layer https://codereview.chromium.org/367833003/diff/320001/cc/layers/picture_layer_impl.cc#newcode1266 cc/layers/picture_layer_impl.cc:1266: ...
6 years, 4 months ago (2014-08-18 19:29:14 UTC) #34
vmpstr
https://codereview.chromium.org/367833003/diff/320001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/320001/cc/layers/picture_layer_impl.cc#newcode1266 cc/layers/picture_layer_impl.cc:1266: // TODO(vmpstr): Verify this is true if we create ...
6 years, 4 months ago (2014-08-18 19:49:52 UTC) #35
USE eero AT chromium.org
https://codereview.chromium.org/367833003/diff/320001/cc/resources/picture_layer_tiling.cc File cc/resources/picture_layer_tiling.cc (right): https://codereview.chromium.org/367833003/diff/320001/cc/resources/picture_layer_tiling.cc#newcode488 cc/resources/picture_layer_tiling.cc:488: content_to_screen_scale_ = 1.0f / (contents_scale_ * ideal_contents_scale); This should ...
6 years, 4 months ago (2014-08-19 08:40:21 UTC) #36
vmpstr
https://codereview.chromium.org/367833003/diff/320001/cc/resources/picture_layer_tiling.cc File cc/resources/picture_layer_tiling.cc (right): https://codereview.chromium.org/367833003/diff/320001/cc/resources/picture_layer_tiling.cc#newcode488 cc/resources/picture_layer_tiling.cc:488: content_to_screen_scale_ = 1.0f / (contents_scale_ * ideal_contents_scale); On 2014/08/19 ...
6 years, 4 months ago (2014-08-19 18:04:33 UTC) #37
vmpstr
I've rebased this, which was somewhat painful, so please take another (careful) look. I'll test ...
6 years, 3 months ago (2014-09-03 19:20:08 UTC) #38
vmpstr
On 2014/09/03 19:20:08, vmpstr wrote: > I've rebased this, which was somewhat painful, so please ...
6 years, 3 months ago (2014-09-04 20:57:04 UTC) #39
vmpstr
I've rebased this again :) Please take a look.
6 years, 3 months ago (2014-09-12 22:42:46 UTC) #40
reveman
LGTM https://codereview.chromium.org/367833003/diff/380001/cc/layers/picture_layer_impl_unittest.cc File cc/layers/picture_layer_impl_unittest.cc (right): https://codereview.chromium.org/367833003/diff/380001/cc/layers/picture_layer_impl_unittest.cc#newcode3789 cc/layers/picture_layer_impl_unittest.cc:3789: tiling->UpdateAllTilePrioritiesForTesting(); 2 calls to UpdateAllTilePrioritiesForTesting intentional?
6 years, 3 months ago (2014-09-17 15:44:45 UTC) #41
vmpstr
PTAL. David, there's another change in the tile manager that I indicated if you wanted ...
6 years, 3 months ago (2014-09-18 18:35:09 UTC) #42
reveman
still lgtm https://codereview.chromium.org/367833003/diff/400001/cc/resources/tile_manager.cc File cc/resources/tile_manager.cc (right): https://codereview.chromium.org/367833003/diff/400001/cc/resources/tile_manager.cc#newcode379 cc/resources/tile_manager.cc:379: // would otherwise not be picked up ...
6 years, 3 months ago (2014-09-18 19:47:10 UTC) #43
danakj
https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc#newcode532 cc/layers/picture_layer_impl.cc:532: layer_tree_impl()->DidModifyTilePriorities(); Can we do this from LayerTreeHostImpl directly and ...
6 years, 3 months ago (2014-09-19 01:41:48 UTC) #44
danakj
https://codereview.chromium.org/367833003/diff/420001/cc/resources/picture_layer_tiling.cc File cc/resources/picture_layer_tiling.cc (right): https://codereview.chromium.org/367833003/diff/420001/cc/resources/picture_layer_tiling.cc#newcode684 cc/resources/picture_layer_tiling.cc:684: WhichTree tree = client_->GetTree(); can we DCHECK(PENDING_TREE) instead actually? ...
6 years, 3 months ago (2014-09-19 01:44:53 UTC) #45
vmpstr
PTAL https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc#newcode532 cc/layers/picture_layer_impl.cc:532: layer_tree_impl()->DidModifyTilePriorities(); On 2014/09/19 01:41:46, danakj wrote: > Can ...
6 years, 3 months ago (2014-09-19 21:22:53 UTC) #46
danakj
https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc#newcode1330 cc/layers/picture_layer_impl.cc:1330: if (tiling->IsTileRequiredForActivation(tile) && !tile->IsReadyToDraw()) On 2014/09/19 21:22:52, vmpstr wrote: ...
6 years, 3 months ago (2014-09-19 22:30:06 UTC) #47
vmpstr
https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/420001/cc/layers/picture_layer_impl.cc#newcode1330 cc/layers/picture_layer_impl.cc:1330: if (tiling->IsTileRequiredForActivation(tile) && !tile->IsReadyToDraw()) On 2014/09/19 22:30:06, danakj wrote: ...
6 years, 3 months ago (2014-09-22 18:02:00 UTC) #48
vmpstr
PTAL
6 years, 2 months ago (2014-09-26 21:32:07 UTC) #49
vmpstr
Friendly ping. There's no urgency here, but I do want to get this in way ...
6 years, 2 months ago (2014-10-06 19:02:11 UTC) #50
danakj
LGTM here's my last comments :) https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc#newcode525 cc/layers/picture_layer_impl.cc:525: tiling->set_can_require_tiles_for_activation( is there ...
6 years, 2 months ago (2014-10-08 18:46:27 UTC) #51
vmpstr
https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc#newcode525 cc/layers/picture_layer_impl.cc:525: tiling->set_can_require_tiles_for_activation( On 2014/10/08 18:46:25, danakj wrote: > is there ...
6 years, 2 months ago (2014-10-08 22:38:35 UTC) #52
danakj
https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc#newcode525 cc/layers/picture_layer_impl.cc:525: tiling->set_can_require_tiles_for_activation( On 2014/10/08 22:38:34, vmpstr wrote: > On 2014/10/08 ...
6 years, 2 months ago (2014-10-08 23:38:01 UTC) #53
danakj
https://codereview.chromium.org/367833003/diff/540001/cc/resources/picture_layer_tiling.cc File cc/resources/picture_layer_tiling.cc (right): https://codereview.chromium.org/367833003/diff/540001/cc/resources/picture_layer_tiling.cc#newcode1067 cc/resources/picture_layer_tiling.cc:1067: tiling_->UpdateTileAndTwinPriority(current_tile_); On 2014/10/08 23:38:01, danakj wrote: > On 2014/10/08 ...
6 years, 2 months ago (2014-10-08 23:39:27 UTC) #54
vmpstr
https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/367833003/diff/540001/cc/layers/picture_layer_impl.cc#newcode525 cc/layers/picture_layer_impl.cc:525: tiling->set_can_require_tiles_for_activation( On 2014/10/08 23:38:01, danakj wrote: > On 2014/10/08 ...
6 years, 2 months ago (2014-10-09 00:01:42 UTC) #55
danakj
https://codereview.chromium.org/367833003/diff/540001/cc/resources/picture_layer_tiling.cc File cc/resources/picture_layer_tiling.cc (right): https://codereview.chromium.org/367833003/diff/540001/cc/resources/picture_layer_tiling.cc#newcode1067 cc/resources/picture_layer_tiling.cc:1067: tiling_->UpdateTileAndTwinPriority(current_tile_); On 2014/10/09 00:01:42, vmpstr wrote: > On 2014/10/08 ...
6 years, 2 months ago (2014-10-09 00:03:26 UTC) #56
vmpstr
Added the only used low res test, if you wanted to take a look. https://codereview.chromium.org/367833003/diff/600001/cc/layers/picture_layer_impl_unittest.cc ...
6 years, 2 months ago (2014-10-09 00:27:27 UTC) #57
danakj
Thanks LGTM
6 years, 2 months ago (2014-10-09 00:33:39 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/367833003/620001
6 years, 2 months ago (2014-10-09 19:37:05 UTC) #60
commit-bot: I haz the power
Committed patchset #32 (id:620001)
6 years, 2 months ago (2014-10-09 20:16:44 UTC) #61
commit-bot: I haz the power
6 years, 2 months ago (2014-10-09 20:17:36 UTC) #62
Message was sent while issue was closed.
Patchset 32 (id:??) landed as
https://crrev.com/56ace236c9fc5e0f312818c870a56d373f143db5
Cr-Commit-Position: refs/heads/master@{#298962}

Powered by Google App Engine
This is Rietveld 408576698