aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/interfaces/wlr_output.h2
-rw-r--r--include/wlr/types/wlr_output.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h
index a5131297..b5123475 100644
--- a/include/wlr/interfaces/wlr_output.h
+++ b/include/wlr/interfaces/wlr_output.h
@@ -101,7 +101,7 @@ struct wlr_output_impl {
* Initialize a new output.
*/
void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend,
- const struct wlr_output_impl *impl, struct wl_display *display,
+ const struct wlr_output_impl *impl, struct wl_event_loop *event_loop,
const struct wlr_output_state *state);
/**
* Notify compositors that they need to submit a new frame in order to apply
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h
index e81ba02e..c607ec38 100644
--- a/include/wlr/types/wlr_output.h
+++ b/include/wlr/types/wlr_output.h
@@ -127,7 +127,7 @@ struct wlr_render_pass;
struct wlr_output {
const struct wlr_output_impl *impl;
struct wlr_backend *backend;
- struct wl_display *display;
+ struct wl_event_loop *event_loop;
struct wl_global *global;
struct wl_list resources;