aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_surface.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_surface.h b/include/wlr/types/wlr_surface.h
index 88a9a4d8..2bfd5d36 100644
--- a/include/wlr/types/wlr_surface.h
+++ b/include/wlr/types/wlr_surface.h
@@ -3,6 +3,11 @@
#include <wayland-server.h>
+struct wlr_frame_callback {
+ struct wl_resource *resource;
+ struct wl_list link;
+};
+
struct wlr_surface {
struct wl_resource *pending_buffer;
bool pending_attached;
@@ -16,6 +21,8 @@ struct wlr_surface {
struct wl_signal destroy;
struct wl_signal commit;
} signals;
+
+ struct wl_list frame_callback_list; // wl_surface.frame
};
struct wlr_renderer;