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.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/rootston/output.h b/include/rootston/output.h
index e7f49227..d44479ed 100644
--- a/include/rootston/output.h
+++ b/include/rootston/output.h
@@ -10,11 +10,14 @@ 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;
+
+ struct wl_listener frame;
+ struct timespec last_frame;
pixman_region32_t damage;
+ struct wl_event_source *repaint_timer;
};
void output_add_notify(struct wl_listener *listener, void *data);