diff options
author | emersion <contact@emersion.fr> | 2018-01-24 10:57:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 10:57:35 +0100 |
commit | 7a2e9a17bae919088f4265961ad8d00fece7b870 (patch) | |
tree | 7b86d3bc1ea84513a7c777677f38241efedc7283 /include | |
parent | c09c2dfbc4a33aed90bf4c033a2a75e8a0cecb64 (diff) | |
parent | f946c10cb171644e915deeaa40b5e8f8344a808c (diff) |
Merge pull request #579 from Ongy/dpms_decouple
decouples outputenable state and wl_output global
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index 71463cb5..55431ab1 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -89,6 +89,8 @@ struct wlr_output { struct wlr_surface; void wlr_output_enable(struct wlr_output *output, bool enable); +void wlr_output_create_global(struct wlr_output *output); +void wlr_output_destroy_global(struct wlr_output *output); bool wlr_output_set_mode(struct wlr_output *output, struct wlr_output_mode *mode); bool wlr_output_set_custom_mode(struct wlr_output *output, int32_t width, |