diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-18 10:29:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-18 10:29:46 -0400 |
commit | 744724b3cb28c2ee9d265dcbf78b1cbf2b2e3fef (patch) | |
tree | 7a5ebeae1d5e15f047f09698978fa84f61756faa /sway/desktop | |
parent | d4a32800d5eb938a769d7802b23f4a0f43cadaef (diff) | |
parent | d6cd79c342495738fc23fbfbf19a01e73cdc42dc (diff) |
Merge pull request #2473 from RyanDwyer/iterators-per-type
Implement iterators per container type
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/output.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 66747a3f..43ed9793 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -303,15 +303,14 @@ struct send_frame_done_data { static void send_frame_done_container_iterator(struct sway_container *con, void *_data) { - struct send_frame_done_data *data = _data; - if (!sway_assert(con->type == C_VIEW, "expected a view")) { + if (con->type != C_VIEW) { return; } - if (!view_is_visible(con->sway_view)) { return; } + struct send_frame_done_data *data = _data; output_view_for_each_surface(data->output, con->sway_view, send_frame_done_iterator, data->when); } @@ -322,8 +321,8 @@ static void send_frame_done_container(struct sway_output *output, .output = output, .when = when, }; - container_descendants(con, C_VIEW, - send_frame_done_container_iterator, &data); + output_for_each_container(output->swayc, + send_frame_done_container_iterator, &data); } static void send_frame_done(struct sway_output *output, struct timespec *when) { |