aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rootston/output.h')
-rw-r--r--include/rootston/output.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/rootston/output.h b/include/rootston/output.h
new file mode 100644
index 00000000..e7f49227
--- /dev/null
+++ b/include/rootston/output.h
@@ -0,0 +1,26 @@
+#ifndef _ROOTSTON_OUTPUT_H
+#define _ROOTSTON_OUTPUT_H
+
+#include <time.h>
+#include <pixman.h>
+#include <wayland-server.h>
+
+struct roots_desktop;
+
+struct roots_output {
+ struct roots_desktop *desktop;
+ struct wlr_output *wlr_output;
+ struct wl_listener frame;
+ struct timespec last_frame;
+ struct wl_list link; // roots_desktop:outputs
+ struct roots_view *fullscreen_view;
+ pixman_region32_t damage;
+};
+
+void output_add_notify(struct wl_listener *listener, void *data);
+void output_remove_notify(struct wl_listener *listener, void *data);
+
+void output_damage_surface(struct roots_output *output,
+ struct wlr_surface *surface, double lx, double ly);
+
+#endif