2017-11-11 19:41:18 +00:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2018-01-14 15:35:56 +00:00
|
|
|
#include <assert.h>
|
2017-11-11 19:41:18 +00:00
|
|
|
#include <stdlib.h>
|
2018-04-03 16:39:03 +00:00
|
|
|
#include <strings.h>
|
2018-04-06 18:17:58 +00:00
|
|
|
#include <time.h>
|
2017-11-11 16:58:43 +00:00
|
|
|
#include <wayland-server.h>
|
2018-03-19 22:31:18 +00:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2018-03-28 20:38:11 +00:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2018-06-18 10:42:12 +00:00
|
|
|
#include <wlr/types/wlr_buffer.h>
|
2018-03-15 20:22:34 +00:00
|
|
|
#include <wlr/types/wlr_matrix.h>
|
2018-03-30 17:18:50 +00:00
|
|
|
#include <wlr/types/wlr_output_damage.h>
|
2018-03-28 20:38:11 +00:00
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2018-03-30 17:18:50 +00:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-11-23 02:06:08 +00:00
|
|
|
#include <wlr/types/wlr_surface.h>
|
2018-04-06 18:17:58 +00:00
|
|
|
#include <wlr/util/region.h>
|
2017-11-11 16:58:43 +00:00
|
|
|
#include "log.h"
|
2018-05-11 22:44:56 +00:00
|
|
|
#include "sway/config.h"
|
2018-03-15 20:22:34 +00:00
|
|
|
#include "sway/input/input-manager.h"
|
|
|
|
#include "sway/input/seat.h"
|
2018-03-28 20:38:11 +00:00
|
|
|
#include "sway/layers.h"
|
2017-11-18 16:22:02 +00:00
|
|
|
#include "sway/output.h"
|
|
|
|
#include "sway/server.h"
|
2018-04-28 01:26:14 +00:00
|
|
|
#include "sway/tree/arrange.h"
|
2018-03-30 17:18:50 +00:00
|
|
|
#include "sway/tree/container.h"
|
|
|
|
#include "sway/tree/layout.h"
|
2018-03-30 03:41:33 +00:00
|
|
|
#include "sway/tree/view.h"
|
2018-04-16 23:31:34 +00:00
|
|
|
#include "sway/tree/workspace.h"
|
2017-11-23 02:06:08 +00:00
|
|
|
|
2018-04-03 16:39:03 +00:00
|
|
|
struct sway_container *output_by_name(const char *name) {
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
struct sway_container *output = root_container.children->items[i];
|
2018-04-03 23:23:59 +00:00
|
|
|
if (strcasecmp(output->name, name) == 0) {
|
2018-04-03 16:39:03 +00:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-01-14 15:35:56 +00:00
|
|
|
/**
|
|
|
|
* Rotate a child's position relative to a parent. The parent size is (pw, ph),
|
|
|
|
* the child position is (*sx, *sy) and its size is (sw, sh).
|
|
|
|
*/
|
|
|
|
static void rotate_child_position(double *sx, double *sy, double sw, double sh,
|
|
|
|
double pw, double ph, float rotation) {
|
2018-04-06 17:27:01 +00:00
|
|
|
if (rotation == 0.0f) {
|
|
|
|
return;
|
2018-01-14 15:35:56 +00:00
|
|
|
}
|
2018-04-06 17:27:01 +00:00
|
|
|
|
|
|
|
// Coordinates relative to the center of the subsurface
|
|
|
|
double ox = *sx - pw/2 + sw/2,
|
|
|
|
oy = *sy - ph/2 + sh/2;
|
|
|
|
// Rotated coordinates
|
|
|
|
double rx = cos(-rotation)*ox - sin(-rotation)*oy,
|
|
|
|
ry = cos(-rotation)*oy + sin(-rotation)*ox;
|
|
|
|
*sx = rx + pw/2 - sw/2;
|
|
|
|
*sy = ry + ph/2 - sh/2;
|
2018-01-14 15:35:56 +00:00
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
bool output_get_surface_box(struct root_geometry *geo,
|
2018-04-06 17:27:01 +00:00
|
|
|
struct sway_output *output, struct wlr_surface *surface, int sx, int sy,
|
|
|
|
struct wlr_box *surface_box) {
|
2018-04-06 21:37:48 +00:00
|
|
|
if (!wlr_surface_has_buffer(surface)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-01 13:46:02 +00:00
|
|
|
int sw = surface->current.width;
|
|
|
|
int sh = surface->current.height;
|
2018-04-06 17:27:01 +00:00
|
|
|
|
|
|
|
double _sx = sx, _sy = sy;
|
|
|
|
rotate_child_position(&_sx, &_sy, sw, sh, geo->width, geo->height,
|
|
|
|
geo->rotation);
|
|
|
|
|
|
|
|
struct wlr_box box = {
|
|
|
|
.x = geo->x + _sx,
|
|
|
|
.y = geo->y + _sy,
|
|
|
|
.width = sw,
|
|
|
|
.height = sh,
|
|
|
|
};
|
|
|
|
if (surface_box != NULL) {
|
|
|
|
memcpy(surface_box, &box, sizeof(struct wlr_box));
|
2018-03-31 21:49:40 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 17:27:01 +00:00
|
|
|
struct wlr_box rotated_box;
|
|
|
|
wlr_box_rotated_bounds(&box, geo->rotation, &rotated_box);
|
|
|
|
|
|
|
|
struct wlr_box output_box = {
|
2018-06-23 06:24:11 +00:00
|
|
|
.width = output->swayc->current.swayc_width,
|
|
|
|
.height = output->swayc->current.swayc_height,
|
2018-06-03 06:35:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_box intersection;
|
|
|
|
return wlr_box_intersection(&output_box, &rotated_box, &intersection);
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
void output_surface_for_each_surface(struct wlr_surface *surface,
|
2018-04-06 18:17:58 +00:00
|
|
|
double ox, double oy, struct root_geometry *geo,
|
2018-04-06 17:27:01 +00:00
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
geo->x = ox;
|
|
|
|
geo->y = oy;
|
2018-07-01 13:46:02 +00:00
|
|
|
geo->width = surface->current.width;
|
|
|
|
geo->height = surface->current.height;
|
2018-04-06 18:17:58 +00:00
|
|
|
geo->rotation = 0;
|
2018-04-06 17:27:01 +00:00
|
|
|
|
|
|
|
wlr_surface_for_each_surface(surface, iterator, user_data);
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
void output_view_for_each_surface(struct sway_view *view,
|
|
|
|
struct sway_output *output, struct root_geometry *geo,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
geo->x = view->swayc->current.view_x - output->swayc->current.swayc_x;
|
|
|
|
geo->y = view->swayc->current.view_y - output->swayc->current.swayc_y;
|
2018-06-18 10:42:12 +00:00
|
|
|
geo->width = view->swayc->current.view_width;
|
|
|
|
geo->height = view->swayc->current.view_height;
|
2018-04-06 17:27:01 +00:00
|
|
|
geo->rotation = 0; // TODO
|
|
|
|
|
|
|
|
view_for_each_surface(view, iterator, user_data);
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
void output_layer_for_each_surface(struct wl_list *layer_surfaces,
|
2018-04-06 21:37:48 +00:00
|
|
|
struct root_geometry *geo, wlr_surface_iterator_func_t iterator,
|
|
|
|
void *user_data) {
|
|
|
|
struct sway_layer_surface *layer_surface;
|
|
|
|
wl_list_for_each(layer_surface, layer_surfaces, link) {
|
|
|
|
struct wlr_layer_surface *wlr_layer_surface =
|
|
|
|
layer_surface->layer_surface;
|
2018-07-07 09:30:52 +00:00
|
|
|
output_surface_for_each_surface(wlr_layer_surface->surface,
|
2018-04-06 21:37:48 +00:00
|
|
|
layer_surface->geo.x, layer_surface->geo.y, geo, iterator,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
void output_unmanaged_for_each_surface(struct wl_list *unmanaged,
|
2018-04-06 21:37:48 +00:00
|
|
|
struct sway_output *output, struct root_geometry *geo,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
struct sway_xwayland_unmanaged *unmanaged_surface;
|
|
|
|
wl_list_for_each(unmanaged_surface, unmanaged, link) {
|
|
|
|
struct wlr_xwayland_surface *xsurface =
|
|
|
|
unmanaged_surface->wlr_xwayland_surface;
|
2018-06-23 06:24:11 +00:00
|
|
|
double ox = unmanaged_surface->lx - output->swayc->current.swayc_x;
|
|
|
|
double oy = unmanaged_surface->ly - output->swayc->current.swayc_y;
|
2018-04-06 21:37:48 +00:00
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
output_surface_for_each_surface(xsurface->surface, ox, oy, geo,
|
2018-04-06 21:37:48 +00:00
|
|
|
iterator, user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
void output_drag_icons_for_each_surface(struct wl_list *drag_icons,
|
2018-06-09 12:26:03 +00:00
|
|
|
struct sway_output *output, struct root_geometry *geo,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
struct sway_drag_icon *drag_icon;
|
|
|
|
wl_list_for_each(drag_icon, drag_icons, link) {
|
|
|
|
double ox = drag_icon->x - output->swayc->x;
|
|
|
|
double oy = drag_icon->y - output->swayc->y;
|
|
|
|
|
|
|
|
if (drag_icon->wlr_drag_icon->mapped) {
|
2018-07-07 09:30:52 +00:00
|
|
|
output_surface_for_each_surface(drag_icon->wlr_drag_icon->surface,
|
2018-06-09 12:26:03 +00:00
|
|
|
ox, oy, geo, iterator, user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-06 17:27:01 +00:00
|
|
|
static void scale_box(struct wlr_box *box, float scale) {
|
|
|
|
box->x *= scale;
|
|
|
|
box->y *= scale;
|
|
|
|
box->width *= scale;
|
|
|
|
box->height *= scale;
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
struct sway_container *output_get_active_workspace(struct sway_output *output) {
|
2018-04-06 21:37:48 +00:00
|
|
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
|
|
|
struct sway_container *focus =
|
|
|
|
seat_get_focus_inactive(seat, output->swayc);
|
|
|
|
if (!focus) {
|
|
|
|
// We've never been to this output before
|
2018-06-23 06:24:11 +00:00
|
|
|
focus = output->swayc->current.children->items[0];
|
2018-01-15 14:38:05 +00:00
|
|
|
}
|
2018-04-06 21:37:48 +00:00
|
|
|
struct sway_container *workspace = focus;
|
|
|
|
if (workspace->type != C_WORKSPACE) {
|
|
|
|
workspace = container_parent(workspace, C_WORKSPACE);
|
|
|
|
}
|
|
|
|
return workspace;
|
2018-03-28 20:38:11 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 07:29:23 +00:00
|
|
|
bool output_has_opaque_lockscreen(struct sway_output *output,
|
|
|
|
struct sway_seat *seat) {
|
|
|
|
if (!seat->exclusive_client) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_layer_surface *wlr_layer_surface;
|
|
|
|
wl_list_for_each(wlr_layer_surface, &server.layer_shell->surfaces, link) {
|
|
|
|
if (wlr_layer_surface->output != output->wlr_output) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
struct wlr_surface *wlr_surface = wlr_layer_surface->surface;
|
|
|
|
if (wlr_surface->resource->client != seat->exclusive_client) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-07-06 15:18:54 +00:00
|
|
|
struct sway_layer_surface *sway_layer_surface =
|
|
|
|
layer_from_wlr_layer_surface(wlr_layer_surface);
|
2018-07-03 08:14:46 +00:00
|
|
|
pixman_box32_t output_box = {
|
|
|
|
.x2 = output->swayc->current.swayc_width,
|
|
|
|
.y2 = output->swayc->current.swayc_height,
|
|
|
|
};
|
2018-07-06 15:18:54 +00:00
|
|
|
pixman_region32_t surface_opaque_box;
|
|
|
|
pixman_region32_init(&surface_opaque_box);
|
2018-07-13 11:26:20 +00:00
|
|
|
pixman_region32_copy(&surface_opaque_box, &wlr_surface->opaque_region);
|
2018-07-06 15:18:54 +00:00
|
|
|
pixman_region32_translate(&surface_opaque_box,
|
2018-07-13 11:26:20 +00:00
|
|
|
sway_layer_surface->geo.x, sway_layer_surface->geo.y);
|
|
|
|
bool contains = pixman_region32_contains_rectangle(&surface_opaque_box,
|
|
|
|
&output_box);
|
2018-07-06 15:18:54 +00:00
|
|
|
pixman_region32_fini(&surface_opaque_box);
|
|
|
|
if (contains) {
|
2018-07-03 08:14:46 +00:00
|
|
|
return true;
|
2018-07-03 07:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-06 21:37:48 +00:00
|
|
|
struct send_frame_done_data {
|
|
|
|
struct root_geometry root_geo;
|
|
|
|
struct sway_output *output;
|
|
|
|
struct timespec *when;
|
2018-07-01 00:58:13 +00:00
|
|
|
struct wl_client *exclusive_client;
|
2018-04-06 21:37:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void send_frame_done_iterator(struct wlr_surface *surface,
|
|
|
|
int sx, int sy, void *_data) {
|
|
|
|
struct send_frame_done_data *data = _data;
|
2018-07-01 00:58:13 +00:00
|
|
|
if (data->exclusive_client &&
|
|
|
|
data->exclusive_client != surface->resource->client) {
|
|
|
|
return;
|
|
|
|
}
|
2018-04-06 21:37:48 +00:00
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
bool intersects = output_get_surface_box(&data->root_geo, data->output, surface,
|
2018-04-06 21:37:48 +00:00
|
|
|
sx, sy, NULL);
|
|
|
|
if (intersects) {
|
|
|
|
wlr_surface_send_frame_done(surface, data->when);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_frame_done_layer(struct send_frame_done_data *data,
|
|
|
|
struct wl_list *layer_surfaces) {
|
2018-07-07 09:30:52 +00:00
|
|
|
output_layer_for_each_surface(layer_surfaces, &data->root_geo,
|
2018-04-06 21:37:48 +00:00
|
|
|
send_frame_done_iterator, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_frame_done_unmanaged(struct send_frame_done_data *data,
|
|
|
|
struct wl_list *unmanaged) {
|
2018-07-07 09:30:52 +00:00
|
|
|
output_unmanaged_for_each_surface(unmanaged, data->output, &data->root_geo,
|
2018-04-06 21:37:48 +00:00
|
|
|
send_frame_done_iterator, data);
|
|
|
|
}
|
|
|
|
|
2018-06-09 12:26:03 +00:00
|
|
|
static void send_frame_done_drag_icons(struct send_frame_done_data *data,
|
|
|
|
struct wl_list *drag_icons) {
|
2018-07-07 09:30:52 +00:00
|
|
|
output_drag_icons_for_each_surface(drag_icons, data->output, &data->root_geo,
|
2018-06-09 12:26:03 +00:00
|
|
|
send_frame_done_iterator, data);
|
|
|
|
}
|
|
|
|
|
2018-04-06 21:37:48 +00:00
|
|
|
static void send_frame_done_container_iterator(struct sway_container *con,
|
|
|
|
void *_data) {
|
|
|
|
struct send_frame_done_data *data = _data;
|
|
|
|
if (!sway_assert(con->type == C_VIEW, "expected a view")) {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-02 14:19:03 +00:00
|
|
|
|
|
|
|
if (!view_is_visible(con->sway_view)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
output_view_for_each_surface(con->sway_view, data->output, &data->root_geo,
|
2018-04-06 21:37:48 +00:00
|
|
|
send_frame_done_iterator, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_frame_done_container(struct send_frame_done_data *data,
|
|
|
|
struct sway_container *con) {
|
|
|
|
container_descendants(con, C_VIEW,
|
|
|
|
send_frame_done_container_iterator, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_frame_done(struct sway_output *output, struct timespec *when) {
|
2018-07-01 00:58:13 +00:00
|
|
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
2018-04-06 21:37:48 +00:00
|
|
|
struct send_frame_done_data data = {
|
|
|
|
.output = output,
|
|
|
|
.when = when,
|
2018-07-03 07:29:23 +00:00
|
|
|
.exclusive_client = output_has_opaque_lockscreen(output, seat) ?
|
|
|
|
seat->exclusive_client : NULL,
|
2018-04-06 21:37:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_container *workspace = output_get_active_workspace(output);
|
2018-06-23 06:24:11 +00:00
|
|
|
if (workspace->current.ws_fullscreen) {
|
2018-06-02 19:55:34 +00:00
|
|
|
send_frame_done_container_iterator(
|
2018-06-23 06:24:11 +00:00
|
|
|
workspace->current.ws_fullscreen->swayc, &data);
|
2018-06-02 19:55:34 +00:00
|
|
|
|
2018-06-23 06:24:11 +00:00
|
|
|
if (workspace->current.ws_fullscreen->type == SWAY_VIEW_XWAYLAND) {
|
2018-06-02 19:55:34 +00:00
|
|
|
send_frame_done_unmanaged(&data,
|
|
|
|
&root_container.sway_root->xwayland_unmanaged);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
send_frame_done_layer(&data,
|
|
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND]);
|
|
|
|
send_frame_done_layer(&data,
|
|
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM]);
|
2018-04-06 21:37:48 +00:00
|
|
|
|
2018-06-02 19:55:34 +00:00
|
|
|
send_frame_done_container(&data, workspace);
|
|
|
|
send_frame_done_container(&data, workspace->sway_workspace->floating);
|
|
|
|
|
|
|
|
send_frame_done_unmanaged(&data,
|
|
|
|
&root_container.sway_root->xwayland_unmanaged);
|
|
|
|
send_frame_done_layer(&data,
|
|
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP]);
|
|
|
|
}
|
2018-04-06 21:37:48 +00:00
|
|
|
|
|
|
|
send_frame_done_layer(&data,
|
|
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY]);
|
2018-06-09 12:26:03 +00:00
|
|
|
send_frame_done_drag_icons(&data, &root_container.sway_root->drag_icons);
|
2018-04-06 21:37:48 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 17:18:50 +00:00
|
|
|
static void damage_handle_frame(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_output *output =
|
|
|
|
wl_container_of(listener, output, damage_frame);
|
2018-02-21 00:06:56 +00:00
|
|
|
|
2018-03-30 21:13:13 +00:00
|
|
|
if (!output->wlr_output->enabled) {
|
2018-03-30 17:18:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct timespec now;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
|
|
|
|
|
bool needs_swap;
|
|
|
|
pixman_region32_t damage;
|
|
|
|
pixman_region32_init(&damage);
|
|
|
|
if (!wlr_output_damage_make_current(output->damage, &needs_swap, &damage)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needs_swap) {
|
2018-07-07 09:30:52 +00:00
|
|
|
output_render(output, &now, &damage);
|
2018-03-30 17:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pixman_region32_fini(&damage);
|
|
|
|
|
2018-04-06 21:37:48 +00:00
|
|
|
// Send frame done to all visible surfaces
|
|
|
|
send_frame_done(output, &now);
|
2018-03-30 17:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void output_damage_whole(struct sway_output *output) {
|
|
|
|
wlr_output_damage_add_whole(output->damage);
|
|
|
|
}
|
|
|
|
|
2018-04-06 18:17:58 +00:00
|
|
|
struct damage_data {
|
|
|
|
struct root_geometry root_geo;
|
|
|
|
struct sway_output *output;
|
|
|
|
bool whole;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void damage_surface_iterator(struct wlr_surface *surface, int sx, int sy,
|
|
|
|
void *_data) {
|
|
|
|
struct damage_data *data = _data;
|
|
|
|
struct sway_output *output = data->output;
|
|
|
|
float rotation = data->root_geo.rotation;
|
|
|
|
bool whole = data->whole;
|
|
|
|
|
|
|
|
struct wlr_box box;
|
2018-07-07 09:30:52 +00:00
|
|
|
bool intersects = output_get_surface_box(&data->root_geo, data->output, surface,
|
2018-04-06 18:17:58 +00:00
|
|
|
sx, sy, &box);
|
|
|
|
if (!intersects) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
scale_box(&box, output->wlr_output->scale);
|
|
|
|
|
2018-05-07 15:56:25 +00:00
|
|
|
int center_x = box.x + box.width/2;
|
|
|
|
int center_y = box.y + box.height/2;
|
|
|
|
|
2018-07-01 13:55:14 +00:00
|
|
|
if (pixman_region32_not_empty(&surface->buffer_damage)) {
|
|
|
|
enum wl_output_transform transform =
|
|
|
|
wlr_output_transform_invert(surface->current.transform);
|
|
|
|
|
2018-06-02 14:19:03 +00:00
|
|
|
pixman_region32_t damage;
|
|
|
|
pixman_region32_init(&damage);
|
2018-07-01 13:55:14 +00:00
|
|
|
pixman_region32_copy(&damage, &surface->buffer_damage);
|
|
|
|
wlr_region_transform(&damage, &damage, transform,
|
|
|
|
surface->current.buffer_width, surface->current.buffer_height);
|
|
|
|
wlr_region_scale(&damage, &damage,
|
|
|
|
output->wlr_output->scale / (float)surface->current.scale);
|
2018-07-01 13:46:02 +00:00
|
|
|
if (ceil(output->wlr_output->scale) > surface->current.scale) {
|
2018-06-02 14:19:03 +00:00
|
|
|
// When scaling up a surface, it'll become blurry so we need to
|
|
|
|
// expand the damage region
|
|
|
|
wlr_region_expand(&damage, &damage,
|
2018-07-01 13:46:02 +00:00
|
|
|
ceil(output->wlr_output->scale) - surface->current.scale);
|
2018-06-02 14:19:03 +00:00
|
|
|
}
|
|
|
|
pixman_region32_translate(&damage, box.x, box.y);
|
|
|
|
wlr_region_rotated_bounds(&damage, &damage, rotation,
|
|
|
|
center_x, center_y);
|
|
|
|
wlr_output_damage_add(output->damage, &damage);
|
|
|
|
pixman_region32_fini(&damage);
|
2018-05-07 15:56:25 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 18:17:58 +00:00
|
|
|
if (whole) {
|
|
|
|
wlr_box_rotated_bounds(&box, rotation, &box);
|
|
|
|
wlr_output_damage_add_box(output->damage, &box);
|
|
|
|
}
|
2018-06-02 19:41:40 +00:00
|
|
|
|
|
|
|
wlr_output_schedule_frame(output->wlr_output);
|
2018-04-06 18:17:58 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 15:27:40 +00:00
|
|
|
void output_damage_surface(struct sway_output *output, double ox, double oy,
|
|
|
|
struct wlr_surface *surface, bool whole) {
|
2018-04-06 18:17:58 +00:00
|
|
|
struct damage_data data = {
|
|
|
|
.output = output,
|
|
|
|
.whole = whole,
|
|
|
|
};
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
output_surface_for_each_surface(surface, ox, oy, &data.root_geo,
|
2018-04-06 18:17:58 +00:00
|
|
|
damage_surface_iterator, &data);
|
2018-04-05 22:38:50 +00:00
|
|
|
}
|
|
|
|
|
2018-05-05 18:43:12 +00:00
|
|
|
static void output_damage_view(struct sway_output *output,
|
|
|
|
struct sway_view *view, bool whole) {
|
2018-04-06 18:17:58 +00:00
|
|
|
if (!sway_assert(view->swayc != NULL, "expected a view in the tree")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-19 23:11:55 +00:00
|
|
|
if (!view_is_visible(view)) {
|
2018-04-17 00:58:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-06 18:17:58 +00:00
|
|
|
struct damage_data data = {
|
|
|
|
.output = output,
|
|
|
|
.whole = whole,
|
|
|
|
};
|
|
|
|
|
2018-07-07 09:30:52 +00:00
|
|
|
output_view_for_each_surface(view, output, &data.root_geo,
|
2018-04-06 18:17:58 +00:00
|
|
|
damage_surface_iterator, &data);
|
2018-03-30 17:18:50 +00:00
|
|
|
}
|
|
|
|
|
2018-05-05 18:43:12 +00:00
|
|
|
void output_damage_from_view(struct sway_output *output,
|
|
|
|
struct sway_view *view) {
|
2018-05-26 06:26:10 +00:00
|
|
|
output_damage_view(output, view, false);
|
2018-05-05 18:43:12 +00:00
|
|
|
}
|
|
|
|
|
2018-06-03 06:35:06 +00:00
|
|
|
// Expecting an unscaled box in layout coordinates
|
|
|
|
void output_damage_box(struct sway_output *output, struct wlr_box *_box) {
|
|
|
|
struct wlr_box box;
|
|
|
|
memcpy(&box, _box, sizeof(struct wlr_box));
|
2018-06-06 09:19:30 +00:00
|
|
|
box.x -= output->swayc->current.swayc_x;
|
|
|
|
box.y -= output->swayc->current.swayc_y;
|
2018-06-03 06:35:06 +00:00
|
|
|
scale_box(&box, output->wlr_output->scale);
|
|
|
|
wlr_output_damage_add_box(output->damage, &box);
|
|
|
|
}
|
|
|
|
|
2018-04-06 19:59:50 +00:00
|
|
|
static void output_damage_whole_container_iterator(struct sway_container *con,
|
|
|
|
void *data) {
|
|
|
|
struct sway_output *output = data;
|
|
|
|
|
2018-04-07 16:03:13 +00:00
|
|
|
if (!sway_assert(con->type == C_VIEW, "expected a view")) {
|
2018-04-06 19:59:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
output_damage_view(output, con->sway_view, true);
|
2018-03-30 17:18:50 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 22:38:50 +00:00
|
|
|
void output_damage_whole_container(struct sway_output *output,
|
|
|
|
struct sway_container *con) {
|
2018-07-19 03:18:04 +00:00
|
|
|
// Pad the box by 1px, because the width is a double and might be a fraction
|
2018-04-06 18:17:58 +00:00
|
|
|
struct wlr_box box = {
|
2018-07-19 03:18:04 +00:00
|
|
|
.x = con->current.swayc_x - output->wlr_output->lx - 1,
|
|
|
|
.y = con->current.swayc_y - output->wlr_output->ly - 1,
|
|
|
|
.width = con->current.swayc_width + 2,
|
|
|
|
.height = con->current.swayc_height + 2,
|
2018-04-06 18:17:58 +00:00
|
|
|
};
|
2018-05-24 12:30:44 +00:00
|
|
|
scale_box(&box, output->wlr_output->scale);
|
2018-04-06 18:17:58 +00:00
|
|
|
wlr_output_damage_add_box(output->damage, &box);
|
2018-04-05 21:37:24 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 17:18:50 +00:00
|
|
|
static void damage_handle_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_output *output =
|
|
|
|
wl_container_of(listener, output, damage_destroy);
|
2018-04-03 16:34:01 +00:00
|
|
|
container_destroy(output->swayc);
|
2018-03-30 17:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_output *output = wl_container_of(listener, output, destroy);
|
2018-06-26 12:19:38 +00:00
|
|
|
wl_signal_emit(&output->events.destroy, output);
|
|
|
|
|
2018-06-05 21:56:32 +00:00
|
|
|
if (output->swayc) {
|
|
|
|
container_destroy(output->swayc);
|
|
|
|
}
|
2018-06-07 00:10:42 +00:00
|
|
|
|
2018-06-09 10:38:16 +00:00
|
|
|
wl_list_remove(&output->link);
|
|
|
|
wl_list_remove(&output->destroy.link);
|
|
|
|
output->wlr_output->data = NULL;
|
|
|
|
free(output);
|
2018-06-26 09:40:42 +00:00
|
|
|
|
2018-07-14 13:14:55 +00:00
|
|
|
arrange_windows(&root_container);
|
2018-02-21 00:06:56 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 17:18:50 +00:00
|
|
|
static void handle_mode(struct wl_listener *listener, void *data) {
|
2018-03-28 20:38:11 +00:00
|
|
|
struct sway_output *output = wl_container_of(listener, output, mode);
|
|
|
|
arrange_layers(output);
|
2018-07-14 13:14:55 +00:00
|
|
|
arrange_windows(output->swayc);
|
|
|
|
transaction_commit_dirty();
|
2018-03-28 20:38:11 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 17:18:50 +00:00
|
|
|
static void handle_transform(struct wl_listener *listener, void *data) {
|
2018-03-29 16:19:20 +00:00
|
|
|
struct sway_output *output = wl_container_of(listener, output, transform);
|
|
|
|
arrange_layers(output);
|
2018-07-14 13:14:55 +00:00
|
|
|
arrange_windows(output->swayc);
|
|
|
|
transaction_commit_dirty();
|
2018-03-29 16:19:20 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 10:47:03 +00:00
|
|
|
static void handle_scale_iterator(struct sway_container *view, void *data) {
|
|
|
|
view_update_marks_textures(view->sway_view);
|
|
|
|
}
|
|
|
|
|
2018-03-31 21:49:40 +00:00
|
|
|
static void handle_scale(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_output *output = wl_container_of(listener, output, scale);
|
|
|
|
arrange_layers(output);
|
2018-05-16 10:47:03 +00:00
|
|
|
container_descendants(output->swayc, C_VIEW, handle_scale_iterator, NULL);
|
2018-07-14 13:14:55 +00:00
|
|
|
arrange_windows(output->swayc);
|
|
|
|
transaction_commit_dirty();
|
2018-03-31 21:49:40 +00:00
|
|
|
}
|
|
|
|
|
2018-06-30 05:00:24 +00:00
|
|
|
struct sway_output *output_from_wlr_output(struct wlr_output *wlr_output) {
|
|
|
|
return wlr_output->data;
|
|
|
|
}
|
|
|
|
|
2018-02-14 19:51:51 +00:00
|
|
|
void handle_new_output(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_server *server = wl_container_of(listener, server, new_output);
|
2017-11-11 16:58:43 +00:00
|
|
|
struct wlr_output *wlr_output = data;
|
2018-07-09 21:54:30 +00:00
|
|
|
wlr_log(WLR_DEBUG, "New output %p: %s", wlr_output, wlr_output->name);
|
2017-11-11 19:41:18 +00:00
|
|
|
|
|
|
|
struct sway_output *output = calloc(1, sizeof(struct sway_output));
|
2017-12-12 18:40:17 +00:00
|
|
|
if (!output) {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-11 19:41:18 +00:00
|
|
|
output->wlr_output = wlr_output;
|
2018-03-28 19:47:22 +00:00
|
|
|
wlr_output->data = output;
|
2017-11-11 19:41:18 +00:00
|
|
|
output->server = server;
|
2018-06-06 21:12:02 +00:00
|
|
|
output->damage = wlr_output_damage_create(wlr_output);
|
|
|
|
|
2018-06-09 10:38:16 +00:00
|
|
|
wl_signal_add(&wlr_output->events.destroy, &output->destroy);
|
|
|
|
output->destroy.notify = handle_destroy;
|
|
|
|
|
|
|
|
wl_list_insert(&root_container.sway_root->outputs, &output->link);
|
|
|
|
|
2017-12-13 14:52:18 +00:00
|
|
|
if (!wl_list_empty(&wlr_output->modes)) {
|
|
|
|
struct wlr_output_mode *mode =
|
|
|
|
wl_container_of(wlr_output->modes.prev, mode, link);
|
2017-11-28 09:46:22 +00:00
|
|
|
wlr_output_set_mode(wlr_output, mode);
|
|
|
|
}
|
|
|
|
|
2018-06-05 21:56:32 +00:00
|
|
|
output_enable(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_enable(struct sway_output *output) {
|
|
|
|
struct wlr_output *wlr_output = output->wlr_output;
|
|
|
|
|
2018-06-09 10:38:16 +00:00
|
|
|
if (!sway_assert(output->swayc == NULL, "output is already enabled")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-03 23:52:17 +00:00
|
|
|
output->swayc = output_create(output);
|
2017-12-12 18:40:17 +00:00
|
|
|
if (!output->swayc) {
|
2018-06-05 21:56:32 +00:00
|
|
|
// Output is disabled
|
2017-12-12 18:40:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-11-25 20:49:10 +00:00
|
|
|
|
2018-03-28 19:47:22 +00:00
|
|
|
size_t len = sizeof(output->layers) / sizeof(output->layers[0]);
|
|
|
|
for (size_t i = 0; i < len; ++i) {
|
|
|
|
wl_list_init(&output->layers[i]);
|
|
|
|
}
|
2018-06-26 12:19:38 +00:00
|
|
|
wl_signal_init(&output->events.destroy);
|
2018-03-28 19:47:22 +00:00
|
|
|
|
2018-04-02 12:49:38 +00:00
|
|
|
input_manager_configure_xcursor(input_manager);
|
2017-12-09 19:06:00 +00:00
|
|
|
|
2018-03-28 20:38:11 +00:00
|
|
|
wl_signal_add(&wlr_output->events.mode, &output->mode);
|
2018-03-30 17:18:50 +00:00
|
|
|
output->mode.notify = handle_mode;
|
2018-03-29 16:19:20 +00:00
|
|
|
wl_signal_add(&wlr_output->events.transform, &output->transform);
|
2018-03-30 17:18:50 +00:00
|
|
|
output->transform.notify = handle_transform;
|
2018-03-31 21:49:40 +00:00
|
|
|
wl_signal_add(&wlr_output->events.scale, &output->scale);
|
|
|
|
output->scale.notify = handle_scale;
|
2018-03-30 17:18:50 +00:00
|
|
|
|
|
|
|
wl_signal_add(&output->damage->events.frame, &output->damage_frame);
|
|
|
|
output->damage_frame.notify = damage_handle_frame;
|
|
|
|
wl_signal_add(&output->damage->events.destroy, &output->damage_destroy);
|
|
|
|
output->damage_destroy.notify = damage_handle_destroy;
|
2018-02-14 19:51:51 +00:00
|
|
|
|
2018-03-28 20:38:11 +00:00
|
|
|
arrange_layers(output);
|
2018-07-14 13:14:55 +00:00
|
|
|
arrange_windows(&root_container);
|
|
|
|
transaction_commit_dirty();
|
2017-11-11 19:41:18 +00:00
|
|
|
}
|