From 1b588e7c1f869883a5abe7f3a52edc0d60afd496 Mon Sep 17 00:00:00 2001 From: emersion Date: Wed, 6 Sep 2017 14:48:27 +0200 Subject: [PATCH] Add gamma_control skeleton --- examples/compositor.c | 4 ++ include/wlr/types/wlr_gamma_control.h | 21 ++++++ protocol/gamma-control.xml | 57 ++++++++++++++++ protocol/meson.build | 1 + types/meson.build | 1 + types/wlr_gamma_control.c | 94 +++++++++++++++++++++++++++ 6 files changed, 178 insertions(+) create mode 100644 include/wlr/types/wlr_gamma_control.h create mode 100644 protocol/gamma-control.xml create mode 100644 types/wlr_gamma_control.c diff --git a/examples/compositor.c b/examples/compositor.c index 024324cd..ca69bdbf 100644 --- a/examples/compositor.c +++ b/examples/compositor.c @@ -18,6 +18,7 @@ #include #include #include +#include #include "wlr/types/wlr_compositor.h" #include #include @@ -37,6 +38,7 @@ struct sample_state { struct wl_resource *focus; struct wl_listener keyboard_bound; struct wlr_xwayland *xwayland; + struct wlr_gamma_control_manager *gamma_control_manager; int keymap_fd; size_t keymap_size; uint32_t serial; @@ -162,6 +164,7 @@ int main() { state.wl_shell = wlr_wl_shell_create(compositor.display); state.xdg_shell = wlr_xdg_shell_v6_create(compositor.display); state.data_device_manager = wlr_data_device_manager_create(compositor.display); + state.gamma_control_manager = wlr_gamma_control_manager_create(compositor.display); state.wl_seat = wlr_seat_create(compositor.display, "seat0"); state.keyboard_bound.notify = handle_keyboard_bound; @@ -191,6 +194,7 @@ int main() { wlr_xwayland_destroy(state.xwayland); close(state.keymap_fd); wlr_seat_destroy(state.wl_seat); + wlr_gamma_control_manager_destroy(state.gamma_control_manager); wlr_data_device_manager_destroy(state.data_device_manager); wlr_xdg_shell_v6_destroy(state.xdg_shell); wlr_wl_shell_destroy(state.wl_shell); 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 diff --git a/protocol/gamma-control.xml b/protocol/gamma-control.xml new file mode 100644 index 00000000..e6e33265 --- /dev/null +++ b/protocol/gamma-control.xml @@ -0,0 +1,57 @@ + + + + + Copyright © 2015 Giulio camuffo + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that copyright notice and this permission + notice appear in supporting documentation, and that the name of + the copyright holders not be used in advertising or publicity + pertaining to distribution of the software without specific, + written prior permission. The copyright holders make no + representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied + warranty. + + THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS + SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN + AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF + THIS SOFTWARE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/protocol/meson.build b/protocol/meson.build index 78bc14b5..6dc88d76 100644 --- a/protocol/meson.build +++ b/protocol/meson.build @@ -22,6 +22,7 @@ wayland_scanner_client = generator( protocols = [ [wl_protocol_dir, 'unstable/xdg-shell/xdg-shell-unstable-v6.xml'], + 'gamma-control.xml' ] client_protocols = [ diff --git a/types/meson.build b/types/meson.build index 697e2f4c..cff40150 100644 --- a/types/meson.build +++ b/types/meson.build @@ -19,6 +19,7 @@ lib_wlr_types = static_library( 'wlr_wl_shell.c', 'wlr_compositor.c', 'wlr_box.c', + 'wlr_gamma_control.c', ), include_directories: wlr_inc, dependencies: [wayland_server, pixman, wlr_protos], diff --git a/types/wlr_gamma_control.c b/types/wlr_gamma_control.c new file mode 100644 index 00000000..a6520802 --- /dev/null +++ b/types/wlr_gamma_control.c @@ -0,0 +1,94 @@ +#include +#include +#include +#include +#include +#include "gamma-control-protocol.h" + +static void resource_destroy(struct wl_client *client, struct wl_resource *resource) { + // TODO: we probably need to do more than this + wl_resource_destroy(resource); +} + +static void gamma_control_destroy(struct wl_resource *resource) { + struct wlr_gamma_control *gamma_control = wl_resource_get_user_data(resource); + free(gamma_control); +} + +static void gamma_control_set_gamma(struct wl_client *client, + struct wl_resource *_gamma_control, struct wl_array *red, + struct wl_array *green, struct wl_array *blue) { + // TODO +} + +static void gamma_control_reset_gamma(struct wl_client *client, + struct wl_resource *_gamma_control) { + // TODO +} + +static const struct gamma_control_interface gamma_control_implementation = { + .destroy = resource_destroy, + .set_gamma = gamma_control_set_gamma, + .reset_gamma = gamma_control_reset_gamma, +}; + +static void gamma_control_manager_get_gamma_control(struct wl_client *client, + struct wl_resource *_gamma_control_manager, uint32_t id, + struct wl_resource *_output) { + //struct wlr_gamma_control_manager *gamma_control_manager = + // wl_resource_get_user_data(_gamma_control_manager); + struct wlr_gamma_control *gamma_control; + if (!(gamma_control = calloc(1, sizeof(struct wlr_gamma_control)))) { + return; + } + gamma_control->output = _output; + gamma_control->resource = wl_resource_create(client, + &gamma_control_interface, wl_resource_get_version(_gamma_control_manager), id); + wlr_log(L_DEBUG, "new gamma_control %p (res %p)", gamma_control, gamma_control->resource); + wl_resource_set_implementation(gamma_control->resource, + &gamma_control_implementation, gamma_control, gamma_control_destroy); +} + +static struct gamma_control_manager_interface gamma_control_manager_impl = { + .get_gamma_control = gamma_control_manager_get_gamma_control, +}; + +static void gamma_control_manager_bind(struct wl_client *wl_client, + void *_gamma_control_manager, uint32_t version, uint32_t id) { + struct wlr_gamma_control_manager *gamma_control_manager = _gamma_control_manager; + assert(wl_client && gamma_control_manager); + if (version > 1) { + wlr_log(L_ERROR, "Client requested unsupported gamma_control version, disconnecting"); + wl_client_destroy(wl_client); + return; + } + struct wl_resource *wl_resource = wl_resource_create( + wl_client, &gamma_control_manager_interface, version, id); + wl_resource_set_implementation(wl_resource, &gamma_control_manager_impl, + gamma_control_manager, NULL); +} + +struct wlr_gamma_control_manager *wlr_gamma_control_manager_create(struct wl_display *display) { + struct wlr_gamma_control_manager *gamma_control_manager = + calloc(1, sizeof(struct wlr_gamma_control_manager)); + if (!gamma_control_manager) { + return NULL; + } + struct wl_global *wl_global = wl_global_create(display, + &gamma_control_manager_interface, 1, gamma_control_manager, gamma_control_manager_bind); + if (!wl_global) { + free(gamma_control_manager); + return NULL; + } + gamma_control_manager->wl_global = wl_global; + return gamma_control_manager; +} + +void wlr_gamma_control_manager_destroy(struct wlr_gamma_control_manager *gamma_control_manager) { + if (!gamma_control_manager) { + return; + } + // TODO: this segfault (wl_display->registry_resource_list is not init) + // wl_global_destroy(gamma_control_manager->wl_global); + free(gamma_control_manager); +}