blob: c969a76be1640d218d604e81d8afb80e1800a74c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <wlr/types/wlr_surface.h>
struct sway_container;
struct sway_view;
void desktop_damage_surface(struct wlr_surface *surface, double lx, double ly,
bool whole);
void desktop_damage_whole_container(struct sway_container *con);
void desktop_damage_box(struct wlr_box *box);
void desktop_damage_view(struct sway_view *view);
|