aboutsummaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/sway/input/seat.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 3c81a713..e5aa8478 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -13,7 +13,6 @@
13#include "sway/input/text_input.h" 13#include "sway/input/text_input.h"
14 14
15struct sway_seat; 15struct sway_seat;
16struct render_context;
17 16
18struct sway_seatop_impl { 17struct sway_seatop_impl {
19 void (*button)(struct sway_seat *seat, uint32_t time_msec, 18 void (*button)(struct sway_seat *seat, uint32_t time_msec,
@@ -53,7 +52,6 @@ struct sway_seatop_impl {
53 uint32_t time_msec, enum wlr_tablet_tool_tip_state state); 52 uint32_t time_msec, enum wlr_tablet_tool_tip_state state);
54 void (*end)(struct sway_seat *seat); 53 void (*end)(struct sway_seat *seat);
55 void (*unref)(struct sway_seat *seat, struct sway_container *con); 54 void (*unref)(struct sway_seat *seat, struct sway_container *con);
56 void (*render)(struct sway_seat *seat, struct render_context *ctx);
57 bool allow_set_cursor; 55 bool allow_set_cursor;
58}; 56};
59 57
@@ -353,12 +351,6 @@ void seatop_end(struct sway_seat *seat);
353 */ 351 */
354void seatop_unref(struct sway_seat *seat, struct sway_container *con); 352void seatop_unref(struct sway_seat *seat, struct sway_container *con);
355 353
356/**
357 * Instructs a seatop to render anything that it needs to render
358 * (eg. dropzone for move-tiling)
359 */
360void seatop_render(struct sway_seat *seat, struct render_context *ctx);
361
362bool seatop_allows_set_cursor(struct sway_seat *seat); 354bool seatop_allows_set_cursor(struct sway_seat *seat);
363 355
364/** 356/**