aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 14931ce0..6b95e46a 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -1726,10 +1726,9 @@ void seatop_end(struct sway_seat *seat) {
1726 seat->seatop_impl = NULL; 1726 seat->seatop_impl = NULL;
1727} 1727}
1728 1728
1729void seatop_render(struct sway_seat *seat, struct sway_output *output, 1729void seatop_render(struct sway_seat *seat, struct render_context *ctx) {
1730 const pixman_region32_t *damage) {
1731 if (seat->seatop_impl->render) { 1730 if (seat->seatop_impl->render) {
1732 seat->seatop_impl->render(seat, output, damage); 1731 seat->seatop_impl->render(seat, ctx);
1733 } 1732 }
1734} 1733}
1735 1734