2022-01-13 11:15:39 +01:00
|
|
|
#include <wlr/types/wlr_compositor.h>
|
2018-04-05 23:37:24 +02:00
|
|
|
|
2018-07-07 10:36:20 +02:00
|
|
|
struct sway_container;
|
2018-08-18 07:10:06 +02:00
|
|
|
struct sway_view;
|
2018-07-07 10:36:20 +02:00
|
|
|
|
2018-04-06 17:27:40 +02:00
|
|
|
void desktop_damage_surface(struct wlr_surface *surface, double lx, double ly,
|
|
|
|
bool whole);
|
2018-07-07 10:36:20 +02:00
|
|
|
|
|
|
|
void desktop_damage_whole_container(struct sway_container *con);
|
2018-08-18 07:10:06 +02:00
|
|
|
|
|
|
|
void desktop_damage_box(struct wlr_box *box);
|
|
|
|
|
|
|
|
void desktop_damage_view(struct sway_view *view);
|