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