diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-05-31 15:38:26 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-05-31 15:38:26 -0400 |
commit | fee409bd0af6f2e77116e7d8eddf99dd5225b1dc (patch) | |
tree | 7249b2eab962a7d33eaac1d303beb5bde78ced3c /include/wayland.h | |
parent | 03c9b460346592c902920de2fe16a15dd72f71df (diff) |
Generalize DPMS, remove DRM refs from example
Diffstat (limited to 'include/wayland.h')
-rw-r--r-- | include/wayland.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wayland.h b/include/wayland.h index 68817936..ca79fe33 100644 --- a/include/wayland.h +++ b/include/wayland.h @@ -7,12 +7,12 @@ struct wlr_output_impl { bool (*set_mode)(struct wlr_output_state *state, struct wlr_output_mode *mode); + void (*enable)(struct wlr_output_state *state, bool enable); void (*destroy)(struct wlr_output_state *state); }; struct wlr_output *wlr_output_create(struct wlr_output_impl *impl, struct wlr_output_state *state); - void wlr_output_free(struct wlr_output *output); #endif |