aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/surface.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/surface.h')
-rw-r--r--include/sway/surface.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/sway/surface.h b/include/sway/surface.h
deleted file mode 100644
index fb1cd775..00000000
--- a/include/sway/surface.h
+++ /dev/null
@@ -1,18 +0,0 @@
1#ifndef _SWAY_SURFACE_H
2#define _SWAY_SURFACE_H
3#include <wlr/types/wlr_compositor.h>
4
5struct sway_surface {
6 struct wlr_surface *wlr_surface;
7
8 struct wl_listener destroy;
9
10 /**
11 * This timer can be used for issuing delayed frame done callbacks (for
12 * example, to improve presentation latency). Its handler is set to a
13 * function that issues a frame done callback to this surface.
14 */
15 struct wl_event_source *frame_done_timer;
16};
17
18#endif