2018-12-31 00:12:33 +01:00
|
|
|
/*
|
|
|
|
|
* Cage: A Wayland kiosk.
|
|
|
|
|
*
|
2020-02-24 20:07:36 +01:00
|
|
|
* Copyright (C) 2018-2021 Jente Hidskes
|
2019-12-26 12:00:51 +01:00
|
|
|
* Copyright (C) 2019 The Sway authors
|
2018-12-31 00:12:33 +01:00
|
|
|
*
|
|
|
|
|
* See the LICENSE file accompanying this file.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define _POSIX_C_SOURCE 200112L
|
|
|
|
|
|
2018-12-31 17:24:21 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
|
2021-09-09 12:18:23 +02:00
|
|
|
#include <assert.h>
|
2018-12-31 00:12:33 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
2019-12-20 17:16:53 +01:00
|
|
|
#include <wayland-server-core.h>
|
2018-12-31 00:12:33 +01:00
|
|
|
#include <wlr/backend.h>
|
2019-02-16 00:54:04 +01:00
|
|
|
#include <wlr/backend/wayland.h>
|
2020-02-17 19:49:47 +01:00
|
|
|
#include <wlr/config.h>
|
2019-02-23 18:17:42 +01:00
|
|
|
#if WLR_HAS_X11_BACKEND
|
2019-02-16 00:54:04 +01:00
|
|
|
#include <wlr/backend/x11.h>
|
2019-02-23 18:17:42 +01:00
|
|
|
#endif
|
2024-02-16 16:36:55 +01:00
|
|
|
#include <wlr/render/swapchain.h>
|
2018-12-31 00:12:33 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2022-12-16 05:44:26 -05:00
|
|
|
#include <wlr/types/wlr_compositor.h>
|
2019-01-11 15:20:13 +01:00
|
|
|
#include <wlr/types/wlr_data_device.h>
|
2018-12-31 00:12:33 +01:00
|
|
|
#include <wlr/types/wlr_output.h>
|
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2023-07-21 15:37:38 +02:00
|
|
|
#include <wlr/types/wlr_output_management_v1.h>
|
2024-02-16 16:36:55 +01:00
|
|
|
#include <wlr/types/wlr_output_swapchain_manager.h>
|
2021-08-09 20:06:57 +02:00
|
|
|
#include <wlr/types/wlr_scene.h>
|
2018-12-31 00:12:33 +01:00
|
|
|
#include <wlr/types/wlr_xdg_shell.h>
|
|
|
|
|
#include <wlr/util/log.h>
|
2019-01-20 13:42:36 +01:00
|
|
|
#include <wlr/util/region.h>
|
2018-12-31 00:12:33 +01:00
|
|
|
|
|
|
|
|
#include "output.h"
|
2020-02-03 21:23:39 +01:00
|
|
|
#include "seat.h"
|
2018-12-31 00:12:33 +01:00
|
|
|
#include "server.h"
|
|
|
|
|
#include "view.h"
|
2020-02-03 20:14:29 +00:00
|
|
|
#if CAGE_HAS_XWAYLAND
|
2020-02-01 22:11:25 +01:00
|
|
|
#include "xwayland.h"
|
2020-02-03 20:14:29 +00:00
|
|
|
#endif
|
2018-12-31 00:12:33 +01:00
|
|
|
|
2023-07-21 15:37:38 +02:00
|
|
|
#define OUTPUT_CONFIG_UPDATED \
|
2023-09-30 13:39:53 +02:00
|
|
|
(WLR_OUTPUT_STATE_ENABLED | WLR_OUTPUT_STATE_MODE | WLR_OUTPUT_STATE_SCALE | WLR_OUTPUT_STATE_TRANSFORM | \
|
2023-07-21 15:37:38 +02:00
|
|
|
WLR_OUTPUT_STATE_ADAPTIVE_SYNC_ENABLED)
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
update_output_manager_config(struct cg_server *server)
|
|
|
|
|
{
|
|
|
|
|
struct wlr_output_configuration_v1 *config = wlr_output_configuration_v1_create();
|
|
|
|
|
|
|
|
|
|
struct cg_output *output;
|
|
|
|
|
wl_list_for_each (output, &server->outputs, link) {
|
|
|
|
|
struct wlr_output *wlr_output = output->wlr_output;
|
|
|
|
|
struct wlr_output_configuration_head_v1 *config_head =
|
|
|
|
|
wlr_output_configuration_head_v1_create(config, wlr_output);
|
|
|
|
|
struct wlr_box output_box;
|
|
|
|
|
|
|
|
|
|
wlr_output_layout_get_box(server->output_layout, wlr_output, &output_box);
|
|
|
|
|
if (!wlr_box_empty(&output_box)) {
|
|
|
|
|
config_head->state.x = output_box.x;
|
|
|
|
|
config_head->state.y = output_box.y;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wlr_output_manager_v1_set_configuration(server->output_manager_v1, config);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-12 14:09:24 +00:00
|
|
|
static inline void
|
|
|
|
|
output_layout_add_auto(struct cg_output *output)
|
|
|
|
|
{
|
|
|
|
|
assert(output->scene_output != NULL);
|
2023-11-25 12:48:30 +01:00
|
|
|
struct wlr_output_layout_output *layout_output =
|
|
|
|
|
wlr_output_layout_add_auto(output->server->output_layout, output->wlr_output);
|
|
|
|
|
wlr_scene_output_layout_add_output(output->server->scene_output_layout, layout_output, output->scene_output);
|
2023-09-12 14:09:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
output_layout_add(struct cg_output *output, int32_t x, int32_t y)
|
|
|
|
|
{
|
|
|
|
|
assert(output->scene_output != NULL);
|
2024-02-16 16:54:36 +01:00
|
|
|
bool exists = wlr_output_layout_get(output->server->output_layout, output->wlr_output);
|
2023-11-25 12:48:30 +01:00
|
|
|
struct wlr_output_layout_output *layout_output =
|
|
|
|
|
wlr_output_layout_add(output->server->output_layout, output->wlr_output, x, y);
|
2024-02-16 16:54:36 +01:00
|
|
|
if (exists) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-11-25 12:48:30 +01:00
|
|
|
wlr_scene_output_layout_add_output(output->server->scene_output_layout, layout_output, output->scene_output);
|
2023-09-12 14:09:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
output_layout_remove(struct cg_output *output)
|
|
|
|
|
{
|
|
|
|
|
wlr_output_layout_remove(output->server->output_layout, output->wlr_output);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 15:31:16 +02:00
|
|
|
static void
|
|
|
|
|
output_enable(struct cg_output *output)
|
|
|
|
|
{
|
|
|
|
|
struct wlr_output *wlr_output = output->wlr_output;
|
|
|
|
|
|
|
|
|
|
/* Outputs get enabled by the backend before firing the new_output event,
|
|
|
|
|
* so we can't do a check for already enabled outputs here unless we
|
|
|
|
|
* duplicate the enabled property in cg_output. */
|
|
|
|
|
wlr_log(WLR_DEBUG, "Enabling output %s", wlr_output->name);
|
|
|
|
|
|
2023-12-13 15:37:15 +01:00
|
|
|
struct wlr_output_state state = {0};
|
|
|
|
|
wlr_output_state_set_enabled(&state, true);
|
2021-09-09 12:18:23 +02:00
|
|
|
|
2023-12-13 15:37:15 +01:00
|
|
|
if (wlr_output_commit_state(wlr_output, &state)) {
|
2023-09-12 14:09:24 +00:00
|
|
|
output_layout_add_auto(output);
|
|
|
|
|
}
|
2023-07-21 15:37:38 +02:00
|
|
|
|
|
|
|
|
update_output_manager_config(output->server);
|
2020-05-31 15:31:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
output_disable(struct cg_output *output)
|
|
|
|
|
{
|
|
|
|
|
struct wlr_output *wlr_output = output->wlr_output;
|
|
|
|
|
if (!wlr_output->enabled) {
|
|
|
|
|
wlr_log(WLR_DEBUG, "Not disabling already disabled output %s", wlr_output->name);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wlr_log(WLR_DEBUG, "Disabling output %s", wlr_output->name);
|
2023-12-13 15:37:15 +01:00
|
|
|
struct wlr_output_state state = {0};
|
|
|
|
|
wlr_output_state_set_enabled(&state, false);
|
|
|
|
|
wlr_output_commit_state(wlr_output, &state);
|
2023-09-12 14:09:24 +00:00
|
|
|
output_layout_remove(output);
|
2020-05-31 15:31:16 +02:00
|
|
|
}
|
|
|
|
|
|
2019-12-26 12:00:51 +01:00
|
|
|
static void
|
2021-08-17 17:09:31 +02:00
|
|
|
handle_output_frame(struct wl_listener *listener, void *data)
|
2019-12-26 12:00:51 +01:00
|
|
|
{
|
2021-08-17 17:09:31 +02:00
|
|
|
struct cg_output *output = wl_container_of(listener, output, frame);
|
2018-12-31 00:12:33 +01:00
|
|
|
|
2023-09-12 14:09:24 +00:00
|
|
|
if (!output->wlr_output->enabled || !output->scene_output) {
|
2020-01-07 14:19:34 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-30 13:39:36 +02:00
|
|
|
wlr_scene_output_commit(output->scene_output, NULL);
|
2019-01-20 13:42:36 +01:00
|
|
|
|
2021-09-22 12:41:45 +02:00
|
|
|
struct timespec now = {0};
|
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
2021-12-13 16:26:13 +01:00
|
|
|
wlr_scene_output_send_frame_done(output->scene_output, &now);
|
2018-12-31 00:12:33 +01:00
|
|
|
}
|
|
|
|
|
|
2019-01-20 14:11:52 +01:00
|
|
|
static void
|
2021-01-16 22:20:37 +00:00
|
|
|
handle_output_commit(struct wl_listener *listener, void *data)
|
2019-01-20 14:11:52 +01:00
|
|
|
{
|
2021-01-16 22:20:37 +00:00
|
|
|
struct cg_output *output = wl_container_of(listener, output, commit);
|
|
|
|
|
struct wlr_output_event_commit *event = data;
|
2019-01-20 14:11:52 +01:00
|
|
|
|
2023-07-21 15:37:38 +02:00
|
|
|
/* Notes:
|
|
|
|
|
* - output layout change will also be called if needed to position the views
|
|
|
|
|
* - always update output manager configuration even if the output is now disabled */
|
2020-01-07 14:19:34 +01:00
|
|
|
|
2023-11-21 19:28:06 +01:00
|
|
|
if (event->state->committed & OUTPUT_CONFIG_UPDATED) {
|
2023-07-21 15:37:38 +02:00
|
|
|
update_output_manager_config(output->server);
|
|
|
|
|
}
|
2019-01-20 14:11:52 +01:00
|
|
|
}
|
|
|
|
|
|
2023-11-25 12:29:57 +01:00
|
|
|
static void
|
|
|
|
|
handle_output_request_state(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct cg_output *output = wl_container_of(listener, output, request_state);
|
|
|
|
|
struct wlr_output_event_request_state *event = data;
|
|
|
|
|
|
|
|
|
|
if (wlr_output_commit_state(output->wlr_output, event->state)) {
|
|
|
|
|
update_output_manager_config(output->server);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-21 15:37:38 +02:00
|
|
|
void
|
|
|
|
|
handle_output_layout_change(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct cg_server *server = wl_container_of(listener, server, output_layout_change);
|
|
|
|
|
|
|
|
|
|
view_position_all(server);
|
|
|
|
|
update_output_manager_config(server);
|
2019-01-10 15:50:31 +01:00
|
|
|
}
|
|
|
|
|
|
2023-08-28 17:40:54 +02:00
|
|
|
static bool
|
|
|
|
|
is_nested_output(struct cg_output *output)
|
|
|
|
|
{
|
|
|
|
|
if (wlr_output_is_wl(output->wlr_output)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
#if WLR_HAS_X11_BACKEND
|
|
|
|
|
if (wlr_output_is_x11(output->wlr_output)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:12:33 +01:00
|
|
|
static void
|
2019-01-20 13:42:36 +01:00
|
|
|
output_destroy(struct cg_output *output)
|
2018-12-31 00:12:33 +01:00
|
|
|
{
|
|
|
|
|
struct cg_server *server = output->server;
|
2023-08-28 17:40:54 +02:00
|
|
|
bool was_nested_output = is_nested_output(output);
|
2018-12-31 00:12:33 +01:00
|
|
|
|
2020-02-24 20:07:36 +01:00
|
|
|
output->wlr_output->data = NULL;
|
|
|
|
|
|
2019-01-20 14:11:52 +01:00
|
|
|
wl_list_remove(&output->destroy.link);
|
2021-01-16 22:20:37 +00:00
|
|
|
wl_list_remove(&output->commit.link);
|
2023-11-25 12:29:57 +01:00
|
|
|
wl_list_remove(&output->request_state.link);
|
2021-08-17 17:09:31 +02:00
|
|
|
wl_list_remove(&output->frame.link);
|
2019-12-21 16:10:11 +01:00
|
|
|
wl_list_remove(&output->link);
|
|
|
|
|
|
2023-09-12 14:09:24 +00:00
|
|
|
output_layout_remove(output);
|
2019-12-21 16:10:11 +01:00
|
|
|
|
2019-01-20 14:11:52 +01:00
|
|
|
free(output);
|
2018-12-31 00:12:33 +01:00
|
|
|
|
2023-08-28 17:40:54 +02:00
|
|
|
if (wl_list_empty(&server->outputs) && was_nested_output) {
|
2024-08-28 15:05:03 +02:00
|
|
|
server_terminate(server);
|
2023-07-27 16:58:29 +02:00
|
|
|
} else if (server->output_mode == CAGE_MULTI_OUTPUT_MODE_LAST && !wl_list_empty(&server->outputs)) {
|
2020-05-31 16:04:01 +02:00
|
|
|
struct cg_output *prev = wl_container_of(server->outputs.next, prev, link);
|
2023-07-27 16:58:29 +02:00
|
|
|
output_enable(prev);
|
|
|
|
|
view_position_all(server);
|
2019-12-21 16:10:11 +01:00
|
|
|
}
|
2018-12-31 00:12:33 +01:00
|
|
|
}
|
|
|
|
|
|
2019-01-20 13:42:36 +01:00
|
|
|
static void
|
|
|
|
|
handle_output_destroy(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct cg_output *output = wl_container_of(listener, output, destroy);
|
|
|
|
|
output_destroy(output);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:12:33 +01:00
|
|
|
void
|
|
|
|
|
handle_new_output(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct cg_server *server = wl_container_of(listener, server, new_output);
|
|
|
|
|
struct wlr_output *wlr_output = data;
|
|
|
|
|
|
2021-08-11 11:31:14 +02:00
|
|
|
if (!wlr_output_init_render(wlr_output, server->allocator, server->renderer)) {
|
|
|
|
|
wlr_log(WLR_ERROR, "Failed to initialize output rendering");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-21 16:10:11 +01:00
|
|
|
struct cg_output *output = calloc(1, sizeof(struct cg_output));
|
2019-12-22 01:00:45 +01:00
|
|
|
if (!output) {
|
2019-12-26 17:25:22 +01:00
|
|
|
wlr_log(WLR_ERROR, "Failed to allocate output");
|
2019-12-22 01:00:45 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-21 16:10:11 +01:00
|
|
|
output->wlr_output = wlr_output;
|
2020-02-24 20:07:36 +01:00
|
|
|
wlr_output->data = output;
|
2019-12-21 16:10:11 +01:00
|
|
|
output->server = server;
|
2021-08-17 17:09:31 +02:00
|
|
|
|
2019-12-21 16:10:11 +01:00
|
|
|
wl_list_insert(&server->outputs, &output->link);
|
|
|
|
|
|
2021-01-16 22:20:37 +00:00
|
|
|
output->commit.notify = handle_output_commit;
|
|
|
|
|
wl_signal_add(&wlr_output->events.commit, &output->commit);
|
2023-11-25 12:29:57 +01:00
|
|
|
output->request_state.notify = handle_output_request_state;
|
|
|
|
|
wl_signal_add(&wlr_output->events.request_state, &output->request_state);
|
2019-12-21 16:10:11 +01:00
|
|
|
output->destroy.notify = handle_output_destroy;
|
|
|
|
|
wl_signal_add(&wlr_output->events.destroy, &output->destroy);
|
2021-08-17 17:09:31 +02:00
|
|
|
output->frame.notify = handle_output_frame;
|
|
|
|
|
wl_signal_add(&wlr_output->events.frame, &output->frame);
|
2019-12-21 16:10:11 +01:00
|
|
|
|
2023-09-30 13:38:29 +02:00
|
|
|
output->scene_output = wlr_scene_output_create(server->scene, wlr_output);
|
|
|
|
|
if (!output->scene_output) {
|
|
|
|
|
wlr_log(WLR_ERROR, "Failed to allocate scene output");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-13 15:37:15 +01:00
|
|
|
struct wlr_output_state state = {0};
|
|
|
|
|
wlr_output_state_set_enabled(&state, true);
|
2021-12-22 08:25:43 +02:00
|
|
|
if (!wl_list_empty(&wlr_output->modes)) {
|
|
|
|
|
struct wlr_output_mode *preferred_mode = wlr_output_preferred_mode(wlr_output);
|
|
|
|
|
if (preferred_mode) {
|
2023-12-13 15:37:15 +01:00
|
|
|
wlr_output_state_set_mode(&state, preferred_mode);
|
2021-12-22 08:25:43 +02:00
|
|
|
}
|
2023-12-13 15:37:15 +01:00
|
|
|
if (!wlr_output_test_state(wlr_output, &state)) {
|
2021-12-22 08:25:43 +02:00
|
|
|
struct wlr_output_mode *mode;
|
|
|
|
|
wl_list_for_each (mode, &wlr_output->modes, link) {
|
|
|
|
|
if (mode == preferred_mode) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-13 15:37:15 +01:00
|
|
|
wlr_output_state_set_mode(&state, mode);
|
|
|
|
|
if (wlr_output_test_state(wlr_output, &state)) {
|
2021-12-22 08:25:43 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-11 16:26:14 +01:00
|
|
|
}
|
2021-12-22 08:25:43 +02:00
|
|
|
|
2023-07-27 16:58:29 +02:00
|
|
|
if (server->output_mode == CAGE_MULTI_OUTPUT_MODE_LAST && wl_list_length(&server->outputs) > 1) {
|
2020-05-31 16:04:01 +02:00
|
|
|
struct cg_output *next = wl_container_of(output->link.next, next, link);
|
2023-07-27 16:58:29 +02:00
|
|
|
output_disable(next);
|
2020-05-31 16:04:01 +02:00
|
|
|
}
|
2018-12-31 00:12:33 +01:00
|
|
|
|
2020-07-16 15:21:17 +02:00
|
|
|
if (!wlr_xcursor_manager_load(server->seat->xcursor_manager, wlr_output->scale)) {
|
2020-02-17 19:49:47 +01:00
|
|
|
wlr_log(WLR_ERROR, "Cannot load XCursor theme for output '%s' with scale %f", wlr_output->name,
|
2018-12-31 00:18:37 +01:00
|
|
|
wlr_output->scale);
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-13 15:37:15 +01:00
|
|
|
wlr_log(WLR_DEBUG, "Enabling new output %s", wlr_output->name);
|
|
|
|
|
if (wlr_output_commit_state(wlr_output, &state)) {
|
|
|
|
|
output_layout_add_auto(output);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-21 15:37:38 +02:00
|
|
|
view_position_all(output->server);
|
2023-12-13 15:37:15 +01:00
|
|
|
update_output_manager_config(output->server);
|
2019-01-20 13:42:36 +01:00
|
|
|
}
|
|
|
|
|
|
2019-02-16 00:54:04 +01:00
|
|
|
void
|
|
|
|
|
output_set_window_title(struct cg_output *output, const char *title)
|
|
|
|
|
{
|
|
|
|
|
struct wlr_output *wlr_output = output->wlr_output;
|
|
|
|
|
|
2020-05-31 15:31:16 +02:00
|
|
|
if (!wlr_output->enabled) {
|
|
|
|
|
wlr_log(WLR_DEBUG, "Not setting window title for disabled output %s", wlr_output->name);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-16 00:54:04 +01:00
|
|
|
if (wlr_output_is_wl(wlr_output)) {
|
|
|
|
|
wlr_wl_output_set_title(wlr_output, title);
|
2019-02-23 18:17:42 +01:00
|
|
|
#if WLR_HAS_X11_BACKEND
|
2019-02-16 00:54:04 +01:00
|
|
|
} else if (wlr_output_is_x11(wlr_output)) {
|
|
|
|
|
wlr_x11_output_set_title(wlr_output, title);
|
2019-02-23 18:17:42 +01:00
|
|
|
#endif
|
2019-02-16 00:54:04 +01:00
|
|
|
}
|
|
|
|
|
}
|
2023-07-21 15:37:38 +02:00
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
output_config_apply(struct cg_server *server, struct wlr_output_configuration_v1 *config, bool test_only)
|
|
|
|
|
{
|
2024-02-16 16:36:55 +01:00
|
|
|
bool ok = false;
|
2023-07-21 15:37:38 +02:00
|
|
|
|
2024-02-16 16:36:55 +01:00
|
|
|
size_t states_len;
|
|
|
|
|
struct wlr_backend_output_state *states = wlr_output_configuration_v1_build_state(config, &states_len);
|
|
|
|
|
if (states == NULL) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct wlr_output_swapchain_manager swapchain_manager;
|
|
|
|
|
wlr_output_swapchain_manager_init(&swapchain_manager, server->backend);
|
|
|
|
|
|
|
|
|
|
ok = wlr_output_swapchain_manager_prepare(&swapchain_manager, states, states_len);
|
|
|
|
|
if (!ok || test_only) {
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < states_len; i++) {
|
|
|
|
|
struct wlr_backend_output_state *backend_state = &states[i];
|
|
|
|
|
struct cg_output *output = backend_state->output->data;
|
|
|
|
|
|
|
|
|
|
struct wlr_swapchain *swapchain =
|
|
|
|
|
wlr_output_swapchain_manager_get_swapchain(&swapchain_manager, backend_state->output);
|
|
|
|
|
struct wlr_scene_output_state_options options = {
|
|
|
|
|
.swapchain = swapchain,
|
|
|
|
|
};
|
|
|
|
|
struct wlr_output_state *state = &backend_state->base;
|
|
|
|
|
if (!wlr_scene_output_build_state(output->scene_output, state, &options)) {
|
|
|
|
|
ok = false;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ok = wlr_backend_commit(server->backend, states, states_len);
|
|
|
|
|
if (!ok) {
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wlr_output_swapchain_manager_apply(&swapchain_manager);
|
|
|
|
|
|
|
|
|
|
struct wlr_output_configuration_head_v1 *head;
|
2023-07-21 15:37:38 +02:00
|
|
|
wl_list_for_each (head, &config->heads, link) {
|
|
|
|
|
struct cg_output *output = head->state.output->data;
|
|
|
|
|
|
2024-02-16 16:36:55 +01:00
|
|
|
if (head->state.enabled) {
|
|
|
|
|
output_layout_add(output, head->state.x, head->state.y);
|
|
|
|
|
} else {
|
|
|
|
|
output_layout_remove(output);
|
2023-07-21 15:37:38 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-16 16:36:55 +01:00
|
|
|
out:
|
|
|
|
|
wlr_output_swapchain_manager_finish(&swapchain_manager);
|
|
|
|
|
for (size_t i = 0; i < states_len; i++) {
|
|
|
|
|
wlr_output_state_finish(&states[i].base);
|
|
|
|
|
}
|
|
|
|
|
free(states);
|
|
|
|
|
return ok;
|
2023-07-21 15:37:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
handle_output_manager_apply(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct cg_server *server = wl_container_of(listener, server, output_manager_apply);
|
|
|
|
|
struct wlr_output_configuration_v1 *config = data;
|
|
|
|
|
|
|
|
|
|
if (output_config_apply(server, config, false)) {
|
|
|
|
|
wlr_output_configuration_v1_send_succeeded(config);
|
|
|
|
|
} else {
|
|
|
|
|
wlr_output_configuration_v1_send_failed(config);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wlr_output_configuration_v1_destroy(config);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
handle_output_manager_test(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct cg_server *server = wl_container_of(listener, server, output_manager_test);
|
|
|
|
|
struct wlr_output_configuration_v1 *config = data;
|
|
|
|
|
|
|
|
|
|
if (output_config_apply(server, config, true)) {
|
|
|
|
|
wlr_output_configuration_v1_send_succeeded(config);
|
|
|
|
|
} else {
|
|
|
|
|
wlr_output_configuration_v1_send_failed(config);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wlr_output_configuration_v1_destroy(config);
|
|
|
|
|
}
|