2017-10-10 00:23:43 +02:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2017-06-22 20:26:02 +02:00
|
|
|
#include <assert.h>
|
2017-05-07 18:26:48 +02:00
|
|
|
#include <stdlib.h>
|
2017-06-07 06:43:57 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <tgmath.h>
|
2017-10-09 19:34:56 +02:00
|
|
|
#include <time.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/interfaces/wlr_output.h>
|
2018-11-23 21:20:57 +01:00
|
|
|
#include <wlr/render/interface.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2017-11-01 13:57:30 +01:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2018-04-30 23:29:16 +02:00
|
|
|
#include <wlr/types/wlr_matrix.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2018-07-07 23:45:16 +02:00
|
|
|
#include <wlr/types/wlr_seat.h>
|
2017-10-08 21:21:06 +02:00
|
|
|
#include <wlr/types/wlr_surface.h>
|
2017-06-22 20:26:02 +02:00
|
|
|
#include <wlr/util/log.h>
|
2018-01-26 22:11:09 +01:00
|
|
|
#include <wlr/util/region.h>
|
2018-02-12 19:45:58 +01:00
|
|
|
#include "util/signal.h"
|
2017-06-22 20:26:02 +02:00
|
|
|
|
2018-04-30 23:29:16 +02:00
|
|
|
#define OUTPUT_VERSION 3
|
|
|
|
|
2019-04-27 11:25:40 +02:00
|
|
|
static void send_geometry(struct wl_resource *resource) {
|
|
|
|
struct wlr_output *output = wlr_output_from_resource(resource);
|
|
|
|
wl_output_send_geometry(resource, 0, 0,
|
|
|
|
output->phys_width, output->phys_height, output->subpixel,
|
|
|
|
output->make, output->model, output->transform);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_all_modes(struct wl_resource *resource) {
|
2018-02-13 23:48:46 +01:00
|
|
|
struct wlr_output *output = wlr_output_from_resource(resource);
|
2017-10-07 14:01:25 +02:00
|
|
|
|
2019-04-27 11:25:40 +02:00
|
|
|
struct wlr_output_mode *mode;
|
|
|
|
wl_list_for_each(mode, &output->modes, link) {
|
2019-07-19 21:42:37 +02:00
|
|
|
uint32_t flags = 0;
|
|
|
|
if (mode->preferred) {
|
|
|
|
flags |= WL_OUTPUT_MODE_PREFERRED;
|
|
|
|
}
|
2019-04-27 11:25:40 +02:00
|
|
|
if (output->current_mode == mode) {
|
|
|
|
flags |= WL_OUTPUT_MODE_CURRENT;
|
2017-06-22 20:26:02 +02:00
|
|
|
}
|
2019-04-27 11:25:40 +02:00
|
|
|
wl_output_send_mode(resource, flags, mode->width, mode->height,
|
|
|
|
mode->refresh);
|
2017-06-22 20:26:02 +02:00
|
|
|
}
|
2019-04-27 11:25:40 +02:00
|
|
|
|
|
|
|
if (wl_list_empty(&output->modes)) {
|
|
|
|
// Output has no mode, send the current width/height
|
|
|
|
wl_output_send_mode(resource, WL_OUTPUT_MODE_CURRENT,
|
|
|
|
output->width, output->height, output->refresh);
|
2017-06-22 20:26:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-27 11:25:40 +02:00
|
|
|
static void send_current_mode(struct wl_resource *resource) {
|
2018-02-13 23:48:46 +01:00
|
|
|
struct wlr_output *output = wlr_output_from_resource(resource);
|
2017-10-23 21:03:00 +02:00
|
|
|
if (output->current_mode != NULL) {
|
|
|
|
struct wlr_output_mode *mode = output->current_mode;
|
2019-07-19 21:42:37 +02:00
|
|
|
uint32_t flags = WL_OUTPUT_MODE_CURRENT;
|
|
|
|
if (mode->preferred) {
|
|
|
|
flags |= WL_OUTPUT_MODE_PREFERRED;
|
|
|
|
}
|
|
|
|
wl_output_send_mode(resource, flags, mode->width, mode->height,
|
|
|
|
mode->refresh);
|
2017-10-23 21:03:00 +02:00
|
|
|
} else {
|
2017-12-17 18:02:55 +01:00
|
|
|
// Output has no mode
|
2017-10-23 21:03:00 +02:00
|
|
|
wl_output_send_mode(resource, WL_OUTPUT_MODE_CURRENT, output->width,
|
2017-12-17 18:02:55 +01:00
|
|
|
output->height, output->refresh);
|
2017-10-23 21:03:00 +02:00
|
|
|
}
|
2019-04-27 11:25:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void send_scale(struct wl_resource *resource) {
|
|
|
|
struct wlr_output *output = wlr_output_from_resource(resource);
|
|
|
|
uint32_t version = wl_resource_get_version(resource);
|
|
|
|
if (version >= WL_OUTPUT_SCALE_SINCE_VERSION) {
|
|
|
|
wl_output_send_scale(resource, (uint32_t)ceil(output->scale));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_done(struct wl_resource *resource) {
|
|
|
|
uint32_t version = wl_resource_get_version(resource);
|
2017-11-15 22:35:16 +01:00
|
|
|
if (version >= WL_OUTPUT_DONE_SINCE_VERSION) {
|
|
|
|
wl_output_send_done(resource);
|
|
|
|
}
|
2017-10-23 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
2018-04-30 23:29:16 +02:00
|
|
|
static void output_handle_resource_destroy(struct wl_resource *resource) {
|
|
|
|
wl_list_remove(wl_resource_get_link(resource));
|
2017-06-22 20:26:02 +02:00
|
|
|
}
|
|
|
|
|
2018-04-30 23:29:16 +02:00
|
|
|
static void output_handle_release(struct wl_client *client,
|
2017-12-19 11:06:09 +01:00
|
|
|
struct wl_resource *resource) {
|
|
|
|
wl_resource_destroy(resource);
|
2017-06-22 20:26:02 +02:00
|
|
|
}
|
|
|
|
|
2018-04-30 23:29:16 +02:00
|
|
|
static const struct wl_output_interface output_impl = {
|
|
|
|
.release = output_handle_release,
|
2017-06-22 20:26:02 +02:00
|
|
|
};
|
|
|
|
|
2018-07-08 00:02:08 +02:00
|
|
|
static void output_bind(struct wl_client *wl_client, void *data,
|
2017-06-22 20:26:02 +02:00
|
|
|
uint32_t version, uint32_t id) {
|
2018-07-08 00:02:08 +02:00
|
|
|
struct wlr_output *output = data;
|
2017-10-22 11:18:27 +02:00
|
|
|
|
2018-04-30 23:29:16 +02:00
|
|
|
struct wl_resource *resource = wl_resource_create(wl_client,
|
2017-10-22 22:21:23 +02:00
|
|
|
&wl_output_interface, version, id);
|
2018-04-30 23:29:16 +02:00
|
|
|
if (resource == NULL) {
|
2017-11-02 23:14:24 +01:00
|
|
|
wl_client_post_no_memory(wl_client);
|
|
|
|
return;
|
|
|
|
}
|
2018-07-08 00:02:08 +02:00
|
|
|
wl_resource_set_implementation(resource, &output_impl, output,
|
2018-04-30 23:29:16 +02:00
|
|
|
output_handle_resource_destroy);
|
2018-07-08 20:21:31 +02:00
|
|
|
wl_list_insert(&output->resources, wl_resource_get_link(resource));
|
2019-04-27 11:25:40 +02:00
|
|
|
|
|
|
|
send_geometry(resource);
|
|
|
|
send_all_modes(resource);
|
|
|
|
send_scale(resource);
|
|
|
|
send_done(resource);
|
2017-06-22 20:26:02 +02:00
|
|
|
}
|
|
|
|
|
2018-01-23 17:40:12 +01:00
|
|
|
void wlr_output_create_global(struct wlr_output *output) {
|
2018-07-08 20:21:31 +02:00
|
|
|
if (output->global != NULL) {
|
2018-01-04 12:46:15 +01:00
|
|
|
return;
|
2017-10-22 22:21:23 +02:00
|
|
|
}
|
2018-07-08 20:21:31 +02:00
|
|
|
output->global = wl_global_create(output->display,
|
2018-07-08 00:02:08 +02:00
|
|
|
&wl_output_interface, OUTPUT_VERSION, output, output_bind);
|
2018-07-08 20:21:31 +02:00
|
|
|
if (output->global == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to allocate wl_output global");
|
2018-07-08 00:02:08 +02:00
|
|
|
}
|
2017-06-22 20:26:02 +02:00
|
|
|
}
|
2017-05-07 18:26:48 +02:00
|
|
|
|
2018-01-23 17:40:12 +01:00
|
|
|
void wlr_output_destroy_global(struct wlr_output *output) {
|
2018-07-08 20:21:31 +02:00
|
|
|
if (output->global == NULL) {
|
2017-10-22 22:21:23 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-07-08 00:02:08 +02:00
|
|
|
// Make all output resources inert
|
2017-10-22 22:21:23 +02:00
|
|
|
struct wl_resource *resource, *tmp;
|
2018-07-08 20:21:31 +02:00
|
|
|
wl_resource_for_each_safe(resource, tmp, &output->resources) {
|
2018-07-08 00:02:08 +02:00
|
|
|
wl_resource_set_user_data(resource, NULL);
|
|
|
|
wl_list_remove(wl_resource_get_link(resource));
|
|
|
|
wl_list_init(wl_resource_get_link(resource));
|
2017-10-22 22:21:23 +02:00
|
|
|
}
|
2018-07-08 20:21:31 +02:00
|
|
|
wl_global_destroy(output->global);
|
|
|
|
output->global = NULL;
|
2018-01-04 12:46:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_output_update_enabled(struct wlr_output *output, bool enabled) {
|
|
|
|
if (output->enabled == enabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
output->enabled = enabled;
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&output->events.enable, output);
|
2017-10-22 22:21:23 +02:00
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static void output_update_matrix(struct wlr_output *output) {
|
2018-03-15 21:26:45 +01:00
|
|
|
wlr_matrix_projection(output->transform_matrix, output->width,
|
|
|
|
output->height, output->transform);
|
2017-06-20 23:51:45 +02:00
|
|
|
}
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
bool wlr_output_enable(struct wlr_output *output, bool enable) {
|
2018-01-15 21:49:37 +01:00
|
|
|
if (output->enabled == enable) {
|
2019-08-07 08:11:38 +02:00
|
|
|
return true;
|
2018-01-15 21:49:37 +01:00
|
|
|
}
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
if (output->impl->enable) {
|
|
|
|
return output->impl->enable(output, enable);
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
2019-08-07 08:11:38 +02:00
|
|
|
return false;
|
2017-06-06 17:48:30 +02:00
|
|
|
}
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
bool wlr_output_set_mode(struct wlr_output *output,
|
2017-10-23 21:03:00 +02:00
|
|
|
struct wlr_output_mode *mode) {
|
2019-08-07 08:11:38 +02:00
|
|
|
if (!output->impl || !output->impl->set_mode) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-02-17 00:09:41 +01:00
|
|
|
if (output->current_mode == mode) {
|
2019-08-07 08:11:38 +02:00
|
|
|
return true;
|
2019-02-17 00:09:41 +01:00
|
|
|
}
|
2019-08-07 08:11:38 +02:00
|
|
|
return output->impl->set_mode(output, mode);
|
2017-06-06 17:48:30 +02:00
|
|
|
}
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
bool wlr_output_set_custom_mode(struct wlr_output *output, int32_t width,
|
2017-12-11 12:14:23 +01:00
|
|
|
int32_t height, int32_t refresh) {
|
2019-08-07 08:11:38 +02:00
|
|
|
if (!output->impl || !output->impl->set_custom_mode) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-02-17 00:09:41 +01:00
|
|
|
if (output->width == width && output->height == height &&
|
|
|
|
output->refresh == refresh) {
|
2019-08-07 08:11:38 +02:00
|
|
|
return true;
|
2019-02-17 00:09:41 +01:00
|
|
|
}
|
2019-08-07 08:11:38 +02:00
|
|
|
return output->impl->set_custom_mode(output, width, height, refresh);
|
2017-12-11 12:14:23 +01:00
|
|
|
}
|
|
|
|
|
2017-12-17 18:02:55 +01:00
|
|
|
void wlr_output_update_mode(struct wlr_output *output,
|
|
|
|
struct wlr_output_mode *mode) {
|
|
|
|
output->current_mode = mode;
|
2019-01-19 10:14:01 +01:00
|
|
|
if (mode != NULL) {
|
|
|
|
wlr_output_update_custom_mode(output, mode->width, mode->height,
|
|
|
|
mode->refresh);
|
|
|
|
} else {
|
|
|
|
wlr_output_update_custom_mode(output, 0, 0, 0);
|
|
|
|
}
|
2017-12-17 18:02:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_output_update_custom_mode(struct wlr_output *output, int32_t width,
|
|
|
|
int32_t height, int32_t refresh) {
|
2018-04-18 01:15:25 +02:00
|
|
|
if (output->width == width && output->height == height &&
|
|
|
|
output->refresh == refresh) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-23 21:03:00 +02:00
|
|
|
output->width = width;
|
|
|
|
output->height = height;
|
2018-04-26 00:51:00 +02:00
|
|
|
output_update_matrix(output);
|
2017-12-06 16:36:46 +01:00
|
|
|
|
2017-12-17 18:02:55 +01:00
|
|
|
output->refresh = refresh;
|
|
|
|
|
2017-12-06 16:36:46 +01:00
|
|
|
struct wl_resource *resource;
|
2018-07-08 20:21:31 +02:00
|
|
|
wl_resource_for_each(resource, &output->resources) {
|
2019-04-27 11:25:40 +02:00
|
|
|
send_current_mode(resource);
|
2017-10-23 21:03:00 +02:00
|
|
|
}
|
2019-04-27 11:25:40 +02:00
|
|
|
wlr_output_schedule_done(output);
|
2017-12-12 21:58:00 +01:00
|
|
|
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&output->events.mode, output);
|
2017-10-23 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:58:00 +01:00
|
|
|
void wlr_output_set_transform(struct wlr_output *output,
|
2017-06-06 17:48:30 +02:00
|
|
|
enum wl_output_transform transform) {
|
2019-06-16 11:35:40 +02:00
|
|
|
if (output->transform == transform) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
output->transform = transform;
|
|
|
|
output_update_matrix(output);
|
|
|
|
|
|
|
|
struct wl_resource *resource;
|
|
|
|
wl_resource_for_each(resource, &output->resources) {
|
|
|
|
send_geometry(resource);
|
|
|
|
}
|
|
|
|
wlr_output_schedule_done(output);
|
|
|
|
|
|
|
|
wlr_signal_emit_safe(&output->events.transform, output);
|
2017-06-06 17:48:30 +02:00
|
|
|
}
|
|
|
|
|
2017-12-15 01:00:03 +01:00
|
|
|
void wlr_output_set_scale(struct wlr_output *output, float scale) {
|
2017-12-06 16:36:46 +01:00
|
|
|
if (output->scale == scale) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
output->scale = scale;
|
|
|
|
|
|
|
|
struct wl_resource *resource;
|
|
|
|
wl_resource_for_each(resource, &output->resources) {
|
|
|
|
send_scale(resource);
|
|
|
|
}
|
|
|
|
wlr_output_schedule_done(output);
|
|
|
|
|
|
|
|
wlr_signal_emit_safe(&output->events.scale, output);
|
2017-10-19 18:57:45 +02:00
|
|
|
}
|
|
|
|
|
2019-04-27 11:25:40 +02:00
|
|
|
void wlr_output_set_subpixel(struct wlr_output *output,
|
|
|
|
enum wl_output_subpixel subpixel) {
|
2019-02-11 01:49:18 +01:00
|
|
|
if (output->subpixel == subpixel) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
output->subpixel = subpixel;
|
|
|
|
|
|
|
|
struct wl_resource *resource;
|
|
|
|
wl_resource_for_each(resource, &output->resources) {
|
2019-04-27 11:25:40 +02:00
|
|
|
send_geometry(resource);
|
|
|
|
}
|
|
|
|
wlr_output_schedule_done(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void schedule_done_handle_idle_timer(void *data) {
|
|
|
|
struct wlr_output *output = data;
|
|
|
|
output->idle_done = NULL;
|
|
|
|
|
|
|
|
struct wl_resource *resource;
|
|
|
|
wl_resource_for_each(resource, &output->resources) {
|
|
|
|
uint32_t version = wl_resource_get_version(resource);
|
|
|
|
if (version >= WL_OUTPUT_DONE_SINCE_VERSION) {
|
|
|
|
wl_output_send_done(resource);
|
|
|
|
}
|
2019-02-11 01:49:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-27 11:25:40 +02:00
|
|
|
void wlr_output_schedule_done(struct wlr_output *output) {
|
|
|
|
if (output->idle_done != NULL) {
|
|
|
|
return; // Already scheduled
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wl_event_loop *ev = wl_display_get_event_loop(output->display);
|
|
|
|
output->idle_done =
|
|
|
|
wl_event_loop_add_idle(ev, schedule_done_handle_idle_timer, output);
|
|
|
|
}
|
|
|
|
|
2018-01-04 12:46:15 +01:00
|
|
|
static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_output *output =
|
|
|
|
wl_container_of(listener, output, display_destroy);
|
|
|
|
wlr_output_destroy_global(output);
|
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend,
|
2018-01-04 12:46:15 +01:00
|
|
|
const struct wlr_output_impl *impl, struct wl_display *display) {
|
2019-06-16 11:35:40 +02:00
|
|
|
assert(impl->attach_render && impl->commit);
|
2018-05-02 16:04:35 +02:00
|
|
|
if (impl->set_cursor || impl->move_cursor) {
|
|
|
|
assert(impl->set_cursor && impl->move_cursor);
|
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
output->backend = backend;
|
|
|
|
output->impl = impl;
|
2018-01-04 12:46:15 +01:00
|
|
|
output->display = display;
|
2017-11-01 13:57:30 +01:00
|
|
|
wl_list_init(&output->modes);
|
|
|
|
output->transform = WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
output->scale = 1;
|
|
|
|
wl_list_init(&output->cursors);
|
2018-07-08 20:21:31 +02:00
|
|
|
wl_list_init(&output->resources);
|
2017-11-01 13:57:30 +01:00
|
|
|
wl_signal_init(&output->events.frame);
|
2019-04-23 19:22:42 +02:00
|
|
|
wl_signal_init(&output->events.needs_frame);
|
2019-04-23 18:44:47 +02:00
|
|
|
wl_signal_init(&output->events.precommit);
|
2019-04-23 19:16:08 +02:00
|
|
|
wl_signal_init(&output->events.commit);
|
2018-10-01 22:44:33 +02:00
|
|
|
wl_signal_init(&output->events.present);
|
2018-01-04 14:51:36 +01:00
|
|
|
wl_signal_init(&output->events.enable);
|
2018-01-06 12:42:32 +01:00
|
|
|
wl_signal_init(&output->events.mode);
|
2017-12-12 21:58:00 +01:00
|
|
|
wl_signal_init(&output->events.scale);
|
|
|
|
wl_signal_init(&output->events.transform);
|
2017-11-01 13:57:30 +01:00
|
|
|
wl_signal_init(&output->events.destroy);
|
2018-01-18 19:47:21 +01:00
|
|
|
pixman_region32_init(&output->damage);
|
2019-04-22 11:42:37 +02:00
|
|
|
pixman_region32_init(&output->pending.damage);
|
2018-01-04 12:46:15 +01:00
|
|
|
|
2018-09-17 15:07:08 +02:00
|
|
|
const char *no_hardware_cursors = getenv("WLR_NO_HARDWARE_CURSORS");
|
|
|
|
if (no_hardware_cursors != NULL && strcmp(no_hardware_cursors, "1") == 0) {
|
|
|
|
wlr_log(WLR_DEBUG,
|
|
|
|
"WLR_NO_HARDWARE_CURSORS set, forcing software cursors");
|
|
|
|
output->software_cursor_locks = 1;
|
|
|
|
}
|
|
|
|
|
2018-01-04 12:46:15 +01:00
|
|
|
output->display_destroy.notify = handle_display_destroy;
|
|
|
|
wl_display_add_destroy_listener(display, &output->display_destroy);
|
2018-01-30 14:45:02 +01:00
|
|
|
|
|
|
|
output->frame_pending = true;
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_output_destroy(struct wlr_output *output) {
|
|
|
|
if (!output) {
|
|
|
|
return;
|
2017-10-29 09:09:21 +01:00
|
|
|
}
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2018-01-04 12:46:15 +01:00
|
|
|
wl_list_remove(&output->display_destroy.link);
|
2017-12-19 11:06:09 +01:00
|
|
|
wlr_output_destroy_global(output);
|
|
|
|
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&output->events.destroy, output);
|
2017-10-29 09:09:21 +01:00
|
|
|
|
2018-10-09 10:25:38 +02:00
|
|
|
// The backend is responsible for free-ing the list of modes
|
2017-12-18 22:24:56 +01:00
|
|
|
|
2017-12-31 13:00:35 +01:00
|
|
|
struct wlr_output_cursor *cursor, *tmp_cursor;
|
|
|
|
wl_list_for_each_safe(cursor, tmp_cursor, &output->cursors, link) {
|
|
|
|
wlr_output_cursor_destroy(cursor);
|
|
|
|
}
|
|
|
|
|
2018-10-09 10:25:38 +02:00
|
|
|
if (output->idle_frame != NULL) {
|
|
|
|
wl_event_source_remove(output->idle_frame);
|
|
|
|
}
|
|
|
|
|
2019-05-30 08:09:11 +02:00
|
|
|
if (output->idle_done != NULL) {
|
|
|
|
wl_event_source_remove(output->idle_done);
|
|
|
|
}
|
|
|
|
|
2019-04-22 11:42:37 +02:00
|
|
|
pixman_region32_fini(&output->pending.damage);
|
2018-01-19 11:20:27 +01:00
|
|
|
pixman_region32_fini(&output->damage);
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
if (output->impl && output->impl->destroy) {
|
|
|
|
output->impl->destroy(output);
|
|
|
|
} else {
|
|
|
|
free(output);
|
|
|
|
}
|
|
|
|
}
|
2017-10-31 12:57:20 +01:00
|
|
|
|
2018-01-30 10:23:35 +01:00
|
|
|
void wlr_output_transformed_resolution(struct wlr_output *output,
|
2017-11-01 13:57:30 +01:00
|
|
|
int *width, int *height) {
|
2018-01-30 10:23:35 +01:00
|
|
|
if (output->transform % 2 == 0) {
|
2017-11-01 13:57:30 +01:00
|
|
|
*width = output->width;
|
|
|
|
*height = output->height;
|
2018-01-30 10:23:35 +01:00
|
|
|
} else {
|
|
|
|
*width = output->height;
|
|
|
|
*height = output->width;
|
2017-06-26 07:34:15 +02:00
|
|
|
}
|
2018-01-30 10:23:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_output_effective_resolution(struct wlr_output *output,
|
|
|
|
int *width, int *height) {
|
|
|
|
wlr_output_transformed_resolution(output, width, height);
|
2017-11-03 04:17:39 +01:00
|
|
|
*width /= output->scale;
|
|
|
|
*height /= output->scale;
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2019-04-22 13:03:53 +02:00
|
|
|
struct wlr_output_mode *wlr_output_preferred_mode(struct wlr_output *output) {
|
|
|
|
if (wl_list_empty(&output->modes)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_output_mode *mode;
|
|
|
|
wl_list_for_each(mode, &output->modes, link) {
|
|
|
|
if (mode->preferred) {
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No preferred mode, choose the last one
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:53:40 +02:00
|
|
|
static void output_state_clear_buffer(struct wlr_output_state *state) {
|
|
|
|
if (!(state->committed & WLR_OUTPUT_STATE_BUFFER)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_buffer_unref(state->buffer);
|
|
|
|
state->buffer = NULL;
|
|
|
|
|
|
|
|
state->committed &= ~WLR_OUTPUT_STATE_BUFFER;
|
|
|
|
}
|
|
|
|
|
2019-04-22 11:42:37 +02:00
|
|
|
bool wlr_output_attach_render(struct wlr_output *output, int *buffer_age) {
|
2019-04-23 18:26:21 +02:00
|
|
|
if (!output->impl->attach_render(output, buffer_age)) {
|
2019-04-22 11:42:37 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:53:40 +02:00
|
|
|
output_state_clear_buffer(&output->pending);
|
2019-04-22 11:42:37 +02:00
|
|
|
output->pending.committed |= WLR_OUTPUT_STATE_BUFFER;
|
2019-04-29 22:25:47 +02:00
|
|
|
output->pending.buffer_type = WLR_OUTPUT_STATE_BUFFER_RENDER;
|
2019-04-22 11:42:37 +02:00
|
|
|
return true;
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
|
|
|
|
2018-11-23 21:20:57 +01:00
|
|
|
bool wlr_output_preferred_read_format(struct wlr_output *output,
|
|
|
|
enum wl_shm_format *fmt) {
|
2019-04-23 18:26:21 +02:00
|
|
|
if (!output->impl->attach_render(output, NULL)) {
|
2018-11-23 21:20:57 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_renderer *renderer = wlr_backend_get_renderer(output->backend);
|
|
|
|
if (!renderer->impl->preferred_read_format || !renderer->impl->read_pixels) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
*fmt = renderer->impl->preferred_read_format(renderer);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-22 11:42:37 +02:00
|
|
|
void wlr_output_set_damage(struct wlr_output *output,
|
2018-01-19 14:08:47 +01:00
|
|
|
pixman_region32_t *damage) {
|
2019-04-22 11:42:37 +02:00
|
|
|
pixman_region32_intersect_rect(&output->pending.damage, damage,
|
|
|
|
0, 0, output->width, output->height);
|
|
|
|
output->pending.committed |= WLR_OUTPUT_STATE_DAMAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void output_state_clear(struct wlr_output_state *state) {
|
2019-05-04 10:53:40 +02:00
|
|
|
output_state_clear_buffer(state);
|
2019-04-22 11:42:37 +02:00
|
|
|
pixman_region32_clear(&state->damage);
|
2019-05-04 10:53:40 +02:00
|
|
|
state->committed = 0;
|
2019-04-22 11:42:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool wlr_output_commit(struct wlr_output *output) {
|
2019-08-07 08:11:38 +02:00
|
|
|
if (output->frame_pending) {
|
|
|
|
wlr_log(WLR_ERROR, "Tried to commit when a frame is pending");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (output->idle_frame != NULL) {
|
|
|
|
wl_event_source_remove(output->idle_frame);
|
|
|
|
output->idle_frame = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(output->pending.committed & WLR_OUTPUT_STATE_BUFFER)) {
|
|
|
|
wlr_log(WLR_ERROR, "Tried to commit without attaching a buffer");
|
|
|
|
return false;
|
2019-04-23 18:26:21 +02:00
|
|
|
}
|
2018-11-10 16:06:02 +01:00
|
|
|
|
2019-04-23 18:26:21 +02:00
|
|
|
struct timespec now;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
2018-01-21 00:06:35 +01:00
|
|
|
|
2019-04-23 18:44:47 +02:00
|
|
|
struct wlr_output_event_precommit event = {
|
2019-04-23 18:26:21 +02:00
|
|
|
.output = output,
|
|
|
|
.when = &now,
|
|
|
|
};
|
2019-04-23 18:44:47 +02:00
|
|
|
wlr_signal_emit_safe(&output->events.precommit, &event);
|
2019-04-22 11:42:37 +02:00
|
|
|
|
2019-04-23 18:26:21 +02:00
|
|
|
if (!output->impl->commit(output)) {
|
2019-06-16 09:19:34 +02:00
|
|
|
output_state_clear(&output->pending);
|
2019-04-22 11:42:37 +02:00
|
|
|
return false;
|
2018-11-10 15:50:28 +01:00
|
|
|
}
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
struct wlr_output_cursor *cursor;
|
|
|
|
wl_list_for_each(cursor, &output->cursors, link) {
|
|
|
|
if (!cursor->enabled || !cursor->visible || cursor->surface == NULL) {
|
|
|
|
continue;
|
2019-04-23 18:26:21 +02:00
|
|
|
}
|
2019-08-07 08:11:38 +02:00
|
|
|
wlr_surface_send_frame_done(cursor->surface, &now);
|
2019-04-23 18:26:21 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 19:16:08 +02:00
|
|
|
wlr_signal_emit_safe(&output->events.commit, output);
|
|
|
|
|
2019-08-07 08:11:38 +02:00
|
|
|
output->frame_pending = true;
|
|
|
|
output->needs_frame = false;
|
2019-04-23 18:26:21 +02:00
|
|
|
output_state_clear(&output->pending);
|
2019-08-07 08:11:38 +02:00
|
|
|
pixman_region32_clear(&output->damage);
|
2018-01-21 00:06:35 +01:00
|
|
|
return true;
|
2017-10-29 09:09:21 +01:00
|
|
|
}
|
|
|
|
|
2019-04-29 21:04:18 +02:00
|
|
|
bool wlr_output_attach_buffer(struct wlr_output *output,
|
|
|
|
struct wlr_buffer *buffer) {
|
|
|
|
if (!output->impl->attach_buffer) {
|
2019-03-29 20:27:12 +01:00
|
|
|
return false;
|
|
|
|
}
|
2019-05-25 17:51:28 +02:00
|
|
|
if (output->attach_render_locks > 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-04 11:33:47 +02:00
|
|
|
|
|
|
|
// If the output has at least one software cursor, refuse to attach the
|
|
|
|
// buffer
|
|
|
|
struct wlr_output_cursor *cursor;
|
|
|
|
wl_list_for_each(cursor, &output->cursors, link) {
|
|
|
|
if (cursor->enabled && cursor->visible &&
|
|
|
|
cursor != output->hardware_cursor) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-29 21:04:18 +02:00
|
|
|
if (!output->impl->attach_buffer(output, buffer)) {
|
2019-03-29 20:27:12 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:53:40 +02:00
|
|
|
output_state_clear_buffer(&output->pending);
|
2019-04-29 22:25:47 +02:00
|
|
|
output->pending.committed |= WLR_OUTPUT_STATE_BUFFER;
|
|
|
|
output->pending.buffer_type = WLR_OUTPUT_STATE_BUFFER_SCANOUT;
|
2019-05-04 10:53:40 +02:00
|
|
|
output->pending.buffer = wlr_buffer_ref(buffer);
|
2019-03-29 20:27:12 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-26 22:39:23 +01:00
|
|
|
void wlr_output_send_frame(struct wlr_output *output) {
|
|
|
|
output->frame_pending = false;
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&output->events.frame, output);
|
2018-01-26 22:39:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void schedule_frame_handle_idle_timer(void *data) {
|
|
|
|
struct wlr_output *output = data;
|
2018-01-30 14:45:02 +01:00
|
|
|
output->idle_frame = NULL;
|
2019-09-25 10:06:08 +02:00
|
|
|
if (!output->frame_pending && output->impl->schedule_frame
|
|
|
|
&& !output->block_idle_frame) {
|
2018-10-05 16:26:40 +02:00
|
|
|
// Ask the backend to send a frame event when appropriate
|
2018-10-29 20:38:57 +01:00
|
|
|
if (output->impl->schedule_frame(output)) {
|
|
|
|
output->frame_pending = true;
|
|
|
|
}
|
2018-01-30 14:45:02 +01:00
|
|
|
}
|
2018-01-26 22:39:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_output_schedule_frame(struct wlr_output *output) {
|
2018-01-30 14:45:02 +01:00
|
|
|
if (output->frame_pending || output->idle_frame != NULL) {
|
2018-01-26 22:39:23 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-05 16:14:22 +02:00
|
|
|
// We're using an idle timer here in case a buffer swap happens right after
|
|
|
|
// this function is called
|
2018-01-26 22:39:23 +01:00
|
|
|
struct wl_event_loop *ev = wl_display_get_event_loop(output->display);
|
2018-01-30 14:45:02 +01:00
|
|
|
output->idle_frame =
|
|
|
|
wl_event_loop_add_idle(ev, schedule_frame_handle_idle_timer, output);
|
2018-01-26 22:39:23 +01:00
|
|
|
}
|
|
|
|
|
2018-10-02 12:11:09 +02:00
|
|
|
void wlr_output_send_present(struct wlr_output *output,
|
|
|
|
struct wlr_output_event_present *event) {
|
|
|
|
struct wlr_output_event_present _event = {0};
|
|
|
|
if (event == NULL) {
|
|
|
|
event = &_event;
|
|
|
|
}
|
|
|
|
|
|
|
|
event->output = output;
|
|
|
|
|
2018-10-01 11:07:58 +02:00
|
|
|
struct timespec now;
|
2018-10-02 12:11:09 +02:00
|
|
|
if (event->when == NULL) {
|
2018-10-01 22:57:36 +02:00
|
|
|
clockid_t clock = wlr_backend_get_presentation_clock(output->backend);
|
2018-10-01 22:46:22 +02:00
|
|
|
errno = 0;
|
|
|
|
if (clock_gettime(clock, &now) != 0) {
|
2018-10-01 11:07:58 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "failed to send output present event: "
|
|
|
|
"failed to read clock");
|
|
|
|
return;
|
|
|
|
}
|
2018-10-02 12:11:09 +02:00
|
|
|
event->when = &now;
|
2018-10-01 11:07:58 +02:00
|
|
|
}
|
|
|
|
|
2018-10-02 12:11:09 +02:00
|
|
|
wlr_signal_emit_safe(&output->events.present, event);
|
2018-09-29 22:38:13 +02:00
|
|
|
}
|
|
|
|
|
2018-10-03 10:36:33 +02:00
|
|
|
bool wlr_output_set_gamma(struct wlr_output *output, size_t size,
|
|
|
|
const uint16_t *r, const uint16_t *g, const uint16_t *b) {
|
2018-07-22 14:23:32 +02:00
|
|
|
if (!output->impl->set_gamma) {
|
|
|
|
return false;
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
2018-07-22 14:23:32 +02:00
|
|
|
return output->impl->set_gamma(output, size, r, g, b);
|
2017-10-29 09:09:21 +01:00
|
|
|
}
|
2017-10-14 12:44:25 +02:00
|
|
|
|
2018-10-03 10:36:33 +02:00
|
|
|
size_t wlr_output_get_gamma_size(struct wlr_output *output) {
|
2017-11-01 13:57:30 +01:00
|
|
|
if (!output->impl->get_gamma_size) {
|
|
|
|
return 0;
|
2017-10-08 21:21:06 +02:00
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
return output->impl->get_gamma_size(output);
|
|
|
|
}
|
2017-10-08 21:21:06 +02:00
|
|
|
|
2018-05-21 19:50:51 +02:00
|
|
|
bool wlr_output_export_dmabuf(struct wlr_output *output,
|
2018-05-31 13:33:27 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs) {
|
2018-05-21 19:50:51 +02:00
|
|
|
if (!output->impl->export_dmabuf) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return output->impl->export_dmabuf(output, attribs);
|
|
|
|
}
|
|
|
|
|
2019-04-23 19:22:42 +02:00
|
|
|
void wlr_output_update_needs_frame(struct wlr_output *output) {
|
|
|
|
output->needs_frame = true;
|
|
|
|
wlr_signal_emit_safe(&output->events.needs_frame, output);
|
2018-01-20 16:43:14 +01:00
|
|
|
}
|
|
|
|
|
2018-04-18 01:15:25 +02:00
|
|
|
void wlr_output_damage_whole(struct wlr_output *output) {
|
2018-01-28 21:56:21 +01:00
|
|
|
int width, height;
|
2018-01-30 21:42:12 +01:00
|
|
|
wlr_output_transformed_resolution(output, &width, &height);
|
2018-01-28 21:56:21 +01:00
|
|
|
|
2018-01-18 19:47:21 +01:00
|
|
|
pixman_region32_union_rect(&output->damage, &output->damage, 0, 0,
|
2018-01-28 21:56:21 +01:00
|
|
|
width, height);
|
2019-04-23 19:22:42 +02:00
|
|
|
wlr_output_update_needs_frame(output);
|
2018-01-18 19:47:21 +01:00
|
|
|
}
|
|
|
|
|
2018-02-13 23:48:46 +01:00
|
|
|
struct wlr_output *wlr_output_from_resource(struct wl_resource *resource) {
|
|
|
|
assert(wl_resource_instance_of(resource, &wl_output_interface,
|
2018-04-30 23:29:16 +02:00
|
|
|
&output_impl));
|
2018-02-13 23:48:46 +01:00
|
|
|
return wl_resource_get_user_data(resource);
|
|
|
|
}
|
|
|
|
|
2019-05-25 17:51:28 +02:00
|
|
|
void wlr_output_lock_attach_render(struct wlr_output *output, bool lock) {
|
|
|
|
if (lock) {
|
|
|
|
++output->attach_render_locks;
|
|
|
|
} else {
|
|
|
|
assert(output->attach_render_locks > 0);
|
|
|
|
--output->attach_render_locks;
|
|
|
|
}
|
|
|
|
wlr_log(WLR_DEBUG, "%s direct scan-out on output '%s' (locks: %d)",
|
|
|
|
lock ? "Disabling" : "Enabling", output->name,
|
|
|
|
output->attach_render_locks);
|
|
|
|
}
|
|
|
|
|
2018-09-17 15:07:08 +02:00
|
|
|
static void output_cursor_damage_whole(struct wlr_output_cursor *cursor);
|
|
|
|
|
|
|
|
void wlr_output_lock_software_cursors(struct wlr_output *output, bool lock) {
|
|
|
|
if (lock) {
|
|
|
|
++output->software_cursor_locks;
|
|
|
|
} else {
|
|
|
|
assert(output->software_cursor_locks > 0);
|
|
|
|
--output->software_cursor_locks;
|
|
|
|
}
|
|
|
|
wlr_log(WLR_DEBUG, "%s hardware cursors on output '%s' (locks: %d)",
|
|
|
|
lock ? "Disabling" : "Enabling", output->name,
|
|
|
|
output->software_cursor_locks);
|
|
|
|
|
|
|
|
if (output->software_cursor_locks > 0 && output->hardware_cursor != NULL) {
|
|
|
|
assert(output->impl->set_cursor);
|
|
|
|
output->impl->set_cursor(output, NULL, 1,
|
|
|
|
WL_OUTPUT_TRANSFORM_NORMAL, 0, 0, true);
|
|
|
|
output_cursor_damage_whole(output->hardware_cursor);
|
|
|
|
output->hardware_cursor = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it's possible to use hardware cursors again, don't switch immediately
|
|
|
|
// since a recorder is likely to lock software cursors for the next frame
|
|
|
|
// again.
|
|
|
|
}
|
|
|
|
|
2018-11-10 15:50:28 +01:00
|
|
|
static void output_scissor(struct wlr_output *output, pixman_box32_t *rect) {
|
|
|
|
struct wlr_renderer *renderer = wlr_backend_get_renderer(output->backend);
|
|
|
|
assert(renderer);
|
|
|
|
|
|
|
|
struct wlr_box box = {
|
|
|
|
.x = rect->x1,
|
|
|
|
.y = rect->y1,
|
|
|
|
.width = rect->x2 - rect->x1,
|
|
|
|
.height = rect->y2 - rect->y1,
|
|
|
|
};
|
|
|
|
|
|
|
|
int ow, oh;
|
|
|
|
wlr_output_transformed_resolution(output, &ow, &oh);
|
|
|
|
|
|
|
|
enum wl_output_transform transform =
|
|
|
|
wlr_output_transform_invert(output->transform);
|
2018-12-21 19:56:10 +01:00
|
|
|
wlr_box_transform(&box, &box, transform, ow, oh);
|
2018-11-10 15:50:28 +01:00
|
|
|
|
|
|
|
wlr_renderer_scissor(renderer, &box);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void output_cursor_get_box(struct wlr_output_cursor *cursor,
|
|
|
|
struct wlr_box *box);
|
|
|
|
|
|
|
|
static void output_cursor_render(struct wlr_output_cursor *cursor,
|
|
|
|
pixman_region32_t *damage) {
|
|
|
|
struct wlr_renderer *renderer =
|
|
|
|
wlr_backend_get_renderer(cursor->output->backend);
|
|
|
|
assert(renderer);
|
|
|
|
|
|
|
|
struct wlr_texture *texture = cursor->texture;
|
|
|
|
if (cursor->surface != NULL) {
|
|
|
|
texture = wlr_surface_get_texture(cursor->surface);
|
|
|
|
}
|
|
|
|
if (texture == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_box box;
|
|
|
|
output_cursor_get_box(cursor, &box);
|
|
|
|
|
|
|
|
pixman_region32_t surface_damage;
|
|
|
|
pixman_region32_init(&surface_damage);
|
|
|
|
pixman_region32_union_rect(&surface_damage, &surface_damage, box.x, box.y,
|
|
|
|
box.width, box.height);
|
|
|
|
pixman_region32_intersect(&surface_damage, &surface_damage, damage);
|
|
|
|
if (!pixman_region32_not_empty(&surface_damage)) {
|
|
|
|
goto surface_damage_finish;
|
|
|
|
}
|
|
|
|
|
|
|
|
float matrix[9];
|
|
|
|
wlr_matrix_project_box(matrix, &box, WL_OUTPUT_TRANSFORM_NORMAL, 0,
|
|
|
|
cursor->output->transform_matrix);
|
|
|
|
|
|
|
|
int nrects;
|
|
|
|
pixman_box32_t *rects = pixman_region32_rectangles(&surface_damage, &nrects);
|
|
|
|
for (int i = 0; i < nrects; ++i) {
|
|
|
|
output_scissor(cursor->output, &rects[i]);
|
|
|
|
wlr_render_texture_with_matrix(renderer, texture, matrix, 1.0f);
|
|
|
|
}
|
|
|
|
wlr_renderer_scissor(renderer, NULL);
|
|
|
|
|
|
|
|
surface_damage_finish:
|
|
|
|
pixman_region32_fini(&surface_damage);
|
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_output_render_software_cursors(struct wlr_output *output,
|
|
|
|
pixman_region32_t *damage) {
|
|
|
|
int width, height;
|
|
|
|
wlr_output_transformed_resolution(output, &width, &height);
|
|
|
|
|
|
|
|
pixman_region32_t render_damage;
|
|
|
|
pixman_region32_init(&render_damage);
|
|
|
|
pixman_region32_union_rect(&render_damage, &render_damage, 0, 0,
|
|
|
|
width, height);
|
|
|
|
if (damage != NULL) {
|
|
|
|
// Damage tracking supported
|
|
|
|
pixman_region32_intersect(&render_damage, &render_damage, damage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pixman_region32_not_empty(&render_damage)) {
|
|
|
|
struct wlr_output_cursor *cursor;
|
|
|
|
wl_list_for_each(cursor, &output->cursors, link) {
|
|
|
|
if (!cursor->enabled || !cursor->visible ||
|
|
|
|
output->hardware_cursor == cursor) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
output_cursor_render(cursor, &render_damage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pixman_region32_fini(&render_damage);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the cursor box, scaled for its output.
|
|
|
|
*/
|
|
|
|
static void output_cursor_get_box(struct wlr_output_cursor *cursor,
|
|
|
|
struct wlr_box *box) {
|
|
|
|
box->x = cursor->x - cursor->hotspot_x;
|
|
|
|
box->y = cursor->y - cursor->hotspot_y;
|
|
|
|
box->width = cursor->width;
|
|
|
|
box->height = cursor->height;
|
|
|
|
}
|
2017-11-20 17:27:36 +01:00
|
|
|
|
2018-01-18 19:47:21 +01:00
|
|
|
static void output_cursor_damage_whole(struct wlr_output_cursor *cursor) {
|
|
|
|
struct wlr_box box;
|
|
|
|
output_cursor_get_box(cursor, &box);
|
|
|
|
pixman_region32_union_rect(&cursor->output->damage, &cursor->output->damage,
|
|
|
|
box.x, box.y, box.width, box.height);
|
2019-04-23 19:22:42 +02:00
|
|
|
wlr_output_update_needs_frame(cursor->output);
|
2018-01-18 19:47:21 +01:00
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
static void output_cursor_reset(struct wlr_output_cursor *cursor) {
|
2017-11-01 20:08:15 +01:00
|
|
|
if (cursor->output->hardware_cursor != cursor) {
|
2018-01-18 19:47:21 +01:00
|
|
|
output_cursor_damage_whole(cursor);
|
2017-11-01 20:08:15 +01:00
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
if (cursor->surface != NULL) {
|
|
|
|
wl_list_remove(&cursor->surface_commit.link);
|
|
|
|
wl_list_remove(&cursor->surface_destroy.link);
|
|
|
|
cursor->surface = NULL;
|
2017-10-29 09:09:21 +01:00
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
2017-10-29 09:09:21 +01:00
|
|
|
|
2018-03-11 11:21:40 +01:00
|
|
|
static void output_cursor_update_visible(struct wlr_output_cursor *cursor) {
|
|
|
|
struct wlr_box output_box;
|
|
|
|
output_box.x = output_box.y = 0;
|
|
|
|
wlr_output_transformed_resolution(cursor->output, &output_box.width,
|
|
|
|
&output_box.height);
|
|
|
|
|
|
|
|
struct wlr_box cursor_box;
|
|
|
|
output_cursor_get_box(cursor, &cursor_box);
|
|
|
|
|
|
|
|
struct wlr_box intersection;
|
|
|
|
bool visible =
|
2018-12-21 19:56:10 +01:00
|
|
|
wlr_box_intersection(&intersection, &output_box, &cursor_box);
|
2018-03-11 11:21:40 +01:00
|
|
|
|
|
|
|
if (cursor->surface != NULL) {
|
|
|
|
if (cursor->visible && !visible) {
|
|
|
|
wlr_surface_send_leave(cursor->surface, cursor->output);
|
|
|
|
}
|
|
|
|
if (!cursor->visible && visible) {
|
|
|
|
wlr_surface_send_enter(cursor->surface, cursor->output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor->visible = visible;
|
|
|
|
}
|
|
|
|
|
2018-05-01 22:38:04 +02:00
|
|
|
static bool output_cursor_attempt_hardware(struct wlr_output_cursor *cursor) {
|
2018-05-09 20:58:18 +02:00
|
|
|
int32_t scale = cursor->output->scale;
|
|
|
|
enum wl_output_transform transform = WL_OUTPUT_TRANSFORM_NORMAL;
|
2018-05-01 22:38:04 +02:00
|
|
|
struct wlr_texture *texture = cursor->texture;
|
|
|
|
if (cursor->surface != NULL) {
|
2018-06-13 20:38:10 +02:00
|
|
|
texture = wlr_surface_get_texture(cursor->surface);
|
2018-06-21 23:39:26 +02:00
|
|
|
scale = cursor->surface->current.scale;
|
|
|
|
transform = cursor->surface->current.transform;
|
2018-05-01 22:38:04 +02:00
|
|
|
}
|
|
|
|
|
2018-09-17 15:07:08 +02:00
|
|
|
if (cursor->output->software_cursor_locks > 0) {
|
2018-09-14 18:07:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-01 22:38:04 +02:00
|
|
|
struct wlr_output_cursor *hwcur = cursor->output->hardware_cursor;
|
|
|
|
if (cursor->output->impl->set_cursor && (hwcur == NULL || hwcur == cursor)) {
|
2018-05-15 19:13:26 +02:00
|
|
|
// If the cursor was hidden or was a software cursor, the hardware
|
|
|
|
// cursor position is outdated
|
|
|
|
assert(cursor->output->impl->move_cursor);
|
|
|
|
cursor->output->impl->move_cursor(cursor->output,
|
|
|
|
(int)cursor->x, (int)cursor->y);
|
2018-05-01 22:38:04 +02:00
|
|
|
if (cursor->output->impl->set_cursor(cursor->output, texture,
|
2018-05-09 20:58:18 +02:00
|
|
|
scale, transform, cursor->hotspot_x, cursor->hotspot_y, true)) {
|
2018-05-01 22:38:04 +02:00
|
|
|
cursor->output->hardware_cursor = cursor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor,
|
|
|
|
const uint8_t *pixels, int32_t stride, uint32_t width, uint32_t height,
|
|
|
|
int32_t hotspot_x, int32_t hotspot_y) {
|
2018-02-03 10:01:42 +01:00
|
|
|
struct wlr_renderer *renderer =
|
|
|
|
wlr_backend_get_renderer(cursor->output->backend);
|
2019-04-14 18:28:57 +02:00
|
|
|
if (!renderer) {
|
|
|
|
// if the backend has no renderer, we can't draw a cursor, but this is
|
|
|
|
// actually okay, for ex. with the noop backend
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-03 10:01:42 +01:00
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
output_cursor_reset(cursor);
|
|
|
|
|
|
|
|
cursor->width = width;
|
|
|
|
cursor->height = height;
|
|
|
|
cursor->hotspot_x = hotspot_x;
|
|
|
|
cursor->hotspot_y = hotspot_y;
|
2018-03-11 11:21:40 +01:00
|
|
|
output_cursor_update_visible(cursor);
|
2017-11-01 13:57:30 +01:00
|
|
|
|
2018-05-01 22:38:04 +02:00
|
|
|
wlr_texture_destroy(cursor->texture);
|
|
|
|
cursor->texture = NULL;
|
|
|
|
|
|
|
|
cursor->enabled = false;
|
|
|
|
if (pixels != NULL) {
|
|
|
|
cursor->texture = wlr_texture_from_pixels(renderer,
|
|
|
|
WL_SHM_FORMAT_ARGB8888, stride, width, height, pixels);
|
|
|
|
if (cursor->texture == NULL) {
|
|
|
|
return false;
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
2018-05-01 22:38:04 +02:00
|
|
|
cursor->enabled = true;
|
2017-10-08 22:30:31 +02:00
|
|
|
}
|
2017-10-08 21:21:06 +02:00
|
|
|
|
2018-05-01 22:38:04 +02:00
|
|
|
if (output_cursor_attempt_hardware(cursor)) {
|
2017-11-02 11:37:43 +01:00
|
|
|
return true;
|
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
|
2018-09-04 19:44:44 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Falling back to software cursor on output '%s'",
|
|
|
|
cursor->output->name);
|
2018-05-01 22:38:04 +02:00
|
|
|
output_cursor_damage_whole(cursor);
|
|
|
|
return true;
|
2017-10-29 17:43:26 +01:00
|
|
|
}
|
|
|
|
|
2018-07-01 13:08:30 +02:00
|
|
|
static void output_cursor_commit(struct wlr_output_cursor *cursor,
|
|
|
|
bool update_hotspot) {
|
2018-01-18 22:18:53 +01:00
|
|
|
if (cursor->output->hardware_cursor != cursor) {
|
|
|
|
output_cursor_damage_whole(cursor);
|
|
|
|
}
|
|
|
|
|
2018-07-01 13:08:30 +02:00
|
|
|
struct wlr_surface *surface = cursor->surface;
|
|
|
|
assert(surface != NULL);
|
|
|
|
|
2017-11-02 11:37:43 +01:00
|
|
|
// Some clients commit a cursor surface with a NULL buffer to hide it.
|
2018-07-01 13:08:30 +02:00
|
|
|
cursor->enabled = wlr_surface_has_buffer(surface);
|
|
|
|
cursor->width = surface->current.width * cursor->output->scale;
|
|
|
|
cursor->height = surface->current.height * cursor->output->scale;
|
2018-10-08 15:58:24 +02:00
|
|
|
output_cursor_update_visible(cursor);
|
2018-07-01 13:08:30 +02:00
|
|
|
if (update_hotspot) {
|
|
|
|
cursor->hotspot_x -= surface->current.dx * cursor->output->scale;
|
|
|
|
cursor->hotspot_y -= surface->current.dy * cursor->output->scale;
|
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
|
2018-05-01 22:38:04 +02:00
|
|
|
if (output_cursor_attempt_hardware(cursor)) {
|
|
|
|
return;
|
2017-11-20 20:53:13 +01:00
|
|
|
}
|
2018-05-01 22:38:04 +02:00
|
|
|
|
|
|
|
// Fallback to software cursor
|
|
|
|
output_cursor_damage_whole(cursor);
|
2017-11-01 13:57:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void output_cursor_handle_commit(struct wl_listener *listener,
|
2017-10-09 19:34:56 +02:00
|
|
|
void *data) {
|
2018-07-01 13:08:30 +02:00
|
|
|
struct wlr_output_cursor *cursor =
|
|
|
|
wl_container_of(listener, cursor, surface_commit);
|
|
|
|
output_cursor_commit(cursor, true);
|
2017-10-09 19:34:56 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
static void output_cursor_handle_destroy(struct wl_listener *listener,
|
2017-10-08 23:11:59 +02:00
|
|
|
void *data) {
|
2017-11-01 13:57:30 +01:00
|
|
|
struct wlr_output_cursor *cursor = wl_container_of(listener, cursor,
|
|
|
|
surface_destroy);
|
|
|
|
output_cursor_reset(cursor);
|
2017-10-08 23:11:59 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
void wlr_output_cursor_set_surface(struct wlr_output_cursor *cursor,
|
2017-10-08 23:11:59 +02:00
|
|
|
struct wlr_surface *surface, int32_t hotspot_x, int32_t hotspot_y) {
|
2018-01-18 22:18:53 +01:00
|
|
|
hotspot_x *= cursor->output->scale;
|
|
|
|
hotspot_y *= cursor->output->scale;
|
2017-10-08 23:11:59 +02:00
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
if (surface && surface == cursor->surface) {
|
2018-01-18 22:18:53 +01:00
|
|
|
// Only update the hotspot: surface hasn't changed
|
|
|
|
|
|
|
|
if (cursor->output->hardware_cursor != cursor) {
|
|
|
|
output_cursor_damage_whole(cursor);
|
|
|
|
}
|
|
|
|
cursor->hotspot_x = hotspot_x;
|
|
|
|
cursor->hotspot_y = hotspot_y;
|
|
|
|
if (cursor->output->hardware_cursor != cursor) {
|
|
|
|
output_cursor_damage_whole(cursor);
|
2018-05-02 16:04:35 +02:00
|
|
|
} else {
|
|
|
|
assert(cursor->output->impl->set_cursor);
|
2018-05-01 22:38:04 +02:00
|
|
|
cursor->output->impl->set_cursor(cursor->output, NULL,
|
2018-05-09 20:58:18 +02:00
|
|
|
1, WL_OUTPUT_TRANSFORM_NORMAL, hotspot_x, hotspot_y, false);
|
2017-10-12 09:40:51 +02:00
|
|
|
}
|
2017-10-08 23:11:59 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
output_cursor_reset(cursor);
|
2017-10-08 23:11:59 +02:00
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
cursor->surface = surface;
|
2018-01-18 22:18:53 +01:00
|
|
|
cursor->hotspot_x = hotspot_x;
|
|
|
|
cursor->hotspot_y = hotspot_y;
|
2017-10-09 15:23:58 +02:00
|
|
|
|
2017-10-08 23:11:59 +02:00
|
|
|
if (surface != NULL) {
|
2017-11-01 13:57:30 +01:00
|
|
|
wl_signal_add(&surface->events.commit, &cursor->surface_commit);
|
|
|
|
wl_signal_add(&surface->events.destroy, &cursor->surface_destroy);
|
2017-12-08 14:23:33 +01:00
|
|
|
|
|
|
|
cursor->visible = false;
|
2018-10-08 15:58:24 +02:00
|
|
|
output_cursor_commit(cursor, false);
|
2017-10-08 23:39:38 +02:00
|
|
|
} else {
|
2017-11-02 11:37:43 +01:00
|
|
|
cursor->enabled = false;
|
|
|
|
cursor->width = 0;
|
|
|
|
cursor->height = 0;
|
|
|
|
|
2018-05-02 16:04:35 +02:00
|
|
|
if (cursor->output->hardware_cursor == cursor) {
|
|
|
|
assert(cursor->output->impl->set_cursor);
|
2018-05-09 20:58:18 +02:00
|
|
|
cursor->output->impl->set_cursor(cursor->output, NULL, 1,
|
|
|
|
WL_OUTPUT_TRANSFORM_NORMAL, 0, 0, true);
|
2018-05-01 22:38:04 +02:00
|
|
|
}
|
2017-10-08 23:11:59 +02:00
|
|
|
}
|
2017-10-08 21:21:06 +02:00
|
|
|
}
|
|
|
|
|
2017-11-04 06:35:12 +01:00
|
|
|
bool wlr_output_cursor_move(struct wlr_output_cursor *cursor,
|
|
|
|
double x, double y) {
|
2018-01-18 19:47:21 +01:00
|
|
|
if (cursor->x == x && cursor->y == y) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cursor->output->hardware_cursor != cursor) {
|
|
|
|
output_cursor_damage_whole(cursor);
|
|
|
|
}
|
|
|
|
|
2018-03-07 10:22:39 +01:00
|
|
|
bool was_visible = cursor->visible;
|
2017-11-03 04:17:39 +01:00
|
|
|
x *= cursor->output->scale;
|
|
|
|
y *= cursor->output->scale;
|
2017-11-01 13:57:30 +01:00
|
|
|
cursor->x = x;
|
|
|
|
cursor->y = y;
|
2017-12-08 14:23:33 +01:00
|
|
|
output_cursor_update_visible(cursor);
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2018-03-07 10:22:39 +01:00
|
|
|
if (!was_visible && !cursor->visible) {
|
|
|
|
// Cursor is still hidden, do nothing
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
if (cursor->output->hardware_cursor != cursor) {
|
2018-01-18 19:47:21 +01:00
|
|
|
output_cursor_damage_whole(cursor);
|
2017-06-26 07:34:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-02 16:04:35 +02:00
|
|
|
assert(cursor->output->impl->move_cursor);
|
2017-11-04 06:35:12 +01:00
|
|
|
return cursor->output->impl->move_cursor(cursor->output, (int)x, (int)y);
|
2017-06-16 21:38:34 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
struct wlr_output_cursor *wlr_output_cursor_create(struct wlr_output *output) {
|
|
|
|
struct wlr_output_cursor *cursor =
|
|
|
|
calloc(1, sizeof(struct wlr_output_cursor));
|
|
|
|
if (cursor == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
cursor->output = output;
|
2018-02-01 12:08:35 +01:00
|
|
|
wl_signal_init(&cursor->events.destroy);
|
2017-11-01 13:57:30 +01:00
|
|
|
wl_list_init(&cursor->surface_commit.link);
|
|
|
|
cursor->surface_commit.notify = output_cursor_handle_commit;
|
|
|
|
wl_list_init(&cursor->surface_destroy.link);
|
|
|
|
cursor->surface_destroy.notify = output_cursor_handle_destroy;
|
|
|
|
wl_list_insert(&output->cursors, &cursor->link);
|
2018-03-11 11:21:40 +01:00
|
|
|
cursor->visible = true; // default position is at (0, 0)
|
2017-11-01 13:57:30 +01:00
|
|
|
return cursor;
|
2017-10-08 23:11:59 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 13:57:30 +01:00
|
|
|
void wlr_output_cursor_destroy(struct wlr_output_cursor *cursor) {
|
|
|
|
if (cursor == NULL) {
|
2017-08-11 19:17:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
output_cursor_reset(cursor);
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&cursor->events.destroy, cursor);
|
2017-11-01 13:57:30 +01:00
|
|
|
if (cursor->output->hardware_cursor == cursor) {
|
|
|
|
// If this cursor was the hardware cursor, disable it
|
|
|
|
if (cursor->output->impl->set_cursor) {
|
2018-05-09 20:58:18 +02:00
|
|
|
cursor->output->impl->set_cursor(cursor->output, NULL, 1,
|
|
|
|
WL_OUTPUT_TRANSFORM_NORMAL, 0, 0, true);
|
2017-10-14 12:44:25 +02:00
|
|
|
}
|
2017-11-01 13:57:30 +01:00
|
|
|
cursor->output->hardware_cursor = NULL;
|
2017-06-26 07:34:15 +02:00
|
|
|
}
|
2018-03-24 23:30:28 +01:00
|
|
|
wlr_texture_destroy(cursor->texture);
|
2017-11-01 13:57:30 +01:00
|
|
|
wl_list_remove(&cursor->link);
|
|
|
|
free(cursor);
|
2017-09-06 17:34:09 +02:00
|
|
|
}
|
2017-10-31 18:00:33 +01:00
|
|
|
|
2017-12-26 18:16:37 +01:00
|
|
|
|
2017-11-01 14:25:41 +01:00
|
|
|
enum wl_output_transform wlr_output_transform_invert(
|
2017-12-26 18:16:37 +01:00
|
|
|
enum wl_output_transform tr) {
|
|
|
|
if ((tr & WL_OUTPUT_TRANSFORM_90) && !(tr & WL_OUTPUT_TRANSFORM_FLIPPED)) {
|
|
|
|
tr ^= WL_OUTPUT_TRANSFORM_180;
|
|
|
|
}
|
|
|
|
return tr;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum wl_output_transform wlr_output_transform_compose(
|
|
|
|
enum wl_output_transform tr_a, enum wl_output_transform tr_b) {
|
|
|
|
uint32_t flipped = (tr_a ^ tr_b) & WL_OUTPUT_TRANSFORM_FLIPPED;
|
|
|
|
uint32_t rotated =
|
|
|
|
(tr_a + tr_b) & (WL_OUTPUT_TRANSFORM_90 | WL_OUTPUT_TRANSFORM_180);
|
|
|
|
return flipped | rotated;
|
2017-11-01 14:25:41 +01:00
|
|
|
}
|