aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.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/input/seat.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/input/seat.c')
-rw-r--r--sway/input/seat.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index b8daa297..75fea484 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -1691,12 +1691,6 @@ void seatop_end(struct sway_seat *seat) {
1691 seat->seatop_impl = NULL; 1691 seat->seatop_impl = NULL;
1692} 1692}
1693 1693
1694void seatop_render(struct sway_seat *seat, struct render_context *ctx) {
1695 if (seat->seatop_impl->render) {
1696 seat->seatop_impl->render(seat, ctx);
1697 }
1698}
1699
1700bool seatop_allows_set_cursor(struct sway_seat *seat) { 1694bool seatop_allows_set_cursor(struct sway_seat *seat) {
1701 return seat->seatop_impl->allow_set_cursor; 1695 return seat->seatop_impl->allow_set_cursor;
1702} 1696}