aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/render.c
diff options
context:
space:
mode:
authorLibravatar Alexander Orzechowski <orzechowski.alexander@gmail.com>2022-02-21 20:57:45 -0500
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commitbac3ab552683516ee5a09632468cd8de529d311f (patch)
tree32d0a8118069125b0f2631f288709d2301dd557a /sway/desktop/render.c
parentscene_graph: Port ext_session_v1 (diff)
downloadsway-bac3ab552683516ee5a09632468cd8de529d311f.tar.gz
sway-bac3ab552683516ee5a09632468cd8de529d311f.tar.zst
sway-bac3ab552683516ee5a09632468cd8de529d311f.zip
seat: Remove dead seatop_render function
Diffstat (limited to 'sway/desktop/render.c')
-rw-r--r--sway/desktop/render.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
index 60431d79..23ced7a1 100644
--- a/sway/desktop/render.c
+++ b/sway/desktop/render.c
@@ -973,13 +973,6 @@ static void render_floating(struct render_context *ctx) {
973 } 973 }
974} 974}
975 975
976static void render_seatops(struct render_context *ctx) {
977 struct sway_seat *seat;
978 wl_list_for_each(seat, &server.input->seats, link) {
979 seatop_render(seat, ctx);
980 }
981}
982
983void output_render(struct render_context *ctx) { 976void output_render(struct render_context *ctx) {
984 struct wlr_output *wlr_output = ctx->output->wlr_output; 977 struct wlr_output *wlr_output = ctx->output->wlr_output;
985 struct sway_output *output = ctx->output; 978 struct sway_output *output = ctx->output;
@@ -1072,8 +1065,6 @@ void output_render(struct render_context *ctx) {
1072 &output->shell_layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP]); 1065 &output->shell_layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP]);
1073 } 1066 }
1074 1067
1075 render_seatops(ctx);
1076
1077 struct sway_seat *seat = input_manager_current_seat(); 1068 struct sway_seat *seat = input_manager_current_seat();
1078 struct sway_container *focus = seat_get_focused_container(seat); 1069 struct sway_container *focus = seat_get_focused_container(seat);
1079 if (focus && focus->view) { 1070 if (focus && focus->view) {