From 1b588e7c1f869883a5abe7f3a52edc0d60afd496 Mon Sep 17 00:00:00 2001 From: emersion Date: Wed, 6 Sep 2017 14:48:27 +0200 Subject: Add gamma_control skeleton --- include/wlr/types/wlr_gamma_control.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 include/wlr/types/wlr_gamma_control.h (limited to 'include') diff --git a/include/wlr/types/wlr_gamma_control.h b/include/wlr/types/wlr_gamma_control.h new file mode 100644 index 00000000..259c6474 --- /dev/null +++ b/include/wlr/types/wlr_gamma_control.h @@ -0,0 +1,21 @@ +#ifndef _WLR_GAMMA_CONTROL_H +#define _WLR_GAMMA_CONTROL_H +#include + +struct wlr_gamma_control_manager { + struct wl_global *wl_global; + + void *data; +}; + +struct wlr_gamma_control { + struct wl_resource *resource; + struct wl_resource *output; + + void* data; +}; + +struct wlr_gamma_control_manager *wlr_gamma_control_manager_create(struct wl_display *display); +void wlr_gamma_control_manager_destroy(struct wlr_gamma_control_manager *gamma_control_manager); + +#endif -- cgit v1.2.3