aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/output.c185
-rw-r--r--sway/desktop/transaction.c45
-rw-r--r--sway/desktop/xdg_shell.c8
-rw-r--r--sway/desktop/xdg_shell_v6.c8
-rw-r--r--sway/desktop/xwayland.c8
5 files changed, 116 insertions, 138 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 018a7285..ed9300bb 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -11,10 +11,11 @@
#include <wlr/types/wlr_output_damage.h>
#include <wlr/types/wlr_output_layout.h>
#include <wlr/types/wlr_output.h>
+#include <wlr/types/wlr_presentation_time.h>
#include <wlr/types/wlr_surface.h>
#include <wlr/util/region.h>
-#include "log.h"
#include "config.h"
+#include "log.h"
#include "sway/config.h"
#include "sway/desktop/transaction.h"
#include "sway/input/input-manager.h"
@@ -223,6 +224,75 @@ void output_drag_icons_for_each_surface(struct sway_output *output,
}
}
+static void for_each_surface_container_iterator(struct sway_container *con,
+ void *_data) {
+ if (!con->view || !view_is_visible(con->view)) {
+ return;
+ }
+
+ struct surface_iterator_data *data = _data;
+ output_view_for_each_surface(data->output, con->view,
+ data->user_iterator, data->user_data);
+}
+
+static void output_for_each_surface(struct sway_output *output,
+ sway_surface_iterator_func_t iterator, void *user_data) {
+ if (output_has_opaque_overlay_layer_surface(output)) {
+ goto overlay;
+ }
+
+ struct surface_iterator_data data = {
+ .user_iterator = iterator,
+ .user_data = user_data,
+ .output = output,
+ };
+
+ struct sway_workspace *workspace = output_get_active_workspace(output);
+ if (workspace->current.fullscreen) {
+ for_each_surface_container_iterator(
+ workspace->current.fullscreen, &data);
+ container_for_each_child(workspace->current.fullscreen,
+ for_each_surface_container_iterator, &data);
+ for (int i = 0; i < workspace->current.floating->length; ++i) {
+ struct sway_container *floater =
+ workspace->current.floating->items[i];
+ if (container_is_transient_for(floater,
+ workspace->current.fullscreen)) {
+ for_each_surface_container_iterator(floater, &data);
+ }
+ }
+#ifdef HAVE_XWAYLAND
+ output_unmanaged_for_each_surface(output, &root->xwayland_unmanaged,
+ iterator, user_data);
+#endif
+ } else {
+ output_layer_for_each_surface(output,
+ &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND],
+ iterator, user_data);
+ output_layer_for_each_surface(output,
+ &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM],
+ iterator, user_data);
+
+ workspace_for_each_container(workspace,
+ for_each_surface_container_iterator, &data);
+
+#ifdef HAVE_XWAYLAND
+ output_unmanaged_for_each_surface(output, &root->xwayland_unmanaged,
+ iterator, user_data);
+#endif
+ output_layer_for_each_surface(output,
+ &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP],
+ iterator, user_data);
+ }
+
+overlay:
+ output_layer_for_each_surface(output,
+ &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY],
+ iterator, user_data);
+ output_drag_icons_for_each_surface(output, &root->drag_icons,
+ iterator, user_data);
+}
+
static int scale_length(int length, int offset, float scale) {
return round((offset + length) * scale) - round(offset * scale);
}
@@ -274,96 +344,13 @@ bool output_has_opaque_overlay_layer_surface(struct sway_output *output) {
static void send_frame_done_iterator(struct sway_output *output,
struct wlr_surface *surface, struct wlr_box *box, float rotation,
- void *_data) {
- struct timespec *when = _data;
+ void *data) {
+ struct timespec *when = data;
wlr_surface_send_frame_done(surface, when);
}
-static void send_frame_done_layer(struct sway_output *output,
- struct wl_list *layer_surfaces, struct timespec *when) {
- output_layer_for_each_surface(output, layer_surfaces,
- send_frame_done_iterator, when);
-}
-
-#ifdef HAVE_XWAYLAND
-static void send_frame_done_unmanaged(struct sway_output *output,
- struct wl_list *unmanaged, struct timespec *when) {
- output_unmanaged_for_each_surface(output, unmanaged,
- send_frame_done_iterator, when);
-}
-#endif
-
-static void send_frame_done_drag_icons(struct sway_output *output,
- struct wl_list *drag_icons, struct timespec *when) {
- output_drag_icons_for_each_surface(output, drag_icons,
- send_frame_done_iterator, when);
-}
-
-struct send_frame_done_data {
- struct sway_output *output;
- struct timespec *when;
-};
-
-static void send_frame_done_container_iterator(struct sway_container *con,
- void *_data) {
- if (!con->view) {
- return;
- }
- if (!view_is_visible(con->view)) {
- return;
- }
-
- struct send_frame_done_data *data = _data;
- output_view_for_each_surface(data->output, con->view,
- send_frame_done_iterator, data->when);
-}
-
static void send_frame_done(struct sway_output *output, struct timespec *when) {
- if (output_has_opaque_overlay_layer_surface(output)) {
- goto send_frame_overlay;
- }
-
- struct send_frame_done_data data = {
- .output = output,
- .when = when,
- };
- struct sway_workspace *workspace = output_get_active_workspace(output);
- if (workspace->current.fullscreen) {
- send_frame_done_container_iterator(
- workspace->current.fullscreen, &data);
- container_for_each_child(workspace->current.fullscreen,
- send_frame_done_container_iterator, &data);
- for (int i = 0; i < workspace->current.floating->length; ++i) {
- struct sway_container *floater =
- workspace->current.floating->items[i];
- if (container_is_transient_for(floater,
- workspace->current.fullscreen)) {
- send_frame_done_container_iterator(floater, &data);
- }
- }
-#ifdef HAVE_XWAYLAND
- send_frame_done_unmanaged(output, &root->xwayland_unmanaged, when);
-#endif
- } else {
- send_frame_done_layer(output,
- &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND], when);
- send_frame_done_layer(output,
- &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM], when);
-
- workspace_for_each_container(workspace,
- send_frame_done_container_iterator, &data);
-
-#ifdef HAVE_XWAYLAND
- send_frame_done_unmanaged(output, &root->xwayland_unmanaged, when);
-#endif
- send_frame_done_layer(output,
- &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP], when);
- }
-
-send_frame_overlay:
- send_frame_done_layer(output,
- &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY], when);
- send_frame_done_drag_icons(output, &root->drag_icons, when);
+ output_for_each_surface(output, send_frame_done_iterator, when);
}
static void damage_handle_frame(struct wl_listener *listener, void *data) {
@@ -545,6 +532,29 @@ static void handle_scale(struct wl_listener *listener, void *data) {
transaction_commit_dirty();
}
+static void send_presented_iterator(struct sway_output *output,
+ struct wlr_surface *surface, struct wlr_box *box, float rotation,
+ void *data) {
+ struct wlr_presentation_event *event = data;
+ wlr_presentation_send_surface_presented(server.presentation,
+ surface, event);
+}
+
+static void handle_present(struct wl_listener *listener, void *data) {
+ struct sway_output *output = wl_container_of(listener, output, present);
+ struct wlr_output_event_present *output_event = data;
+
+ struct wlr_presentation_event event = {
+ .output = output->wlr_output,
+ .tv_sec = (uint64_t)output_event->when->tv_sec,
+ .tv_nsec = (uint32_t)output_event->when->tv_nsec,
+ .refresh = (uint32_t)output_event->refresh,
+ .seq = (uint64_t)output_event->seq,
+ .flags = output_event->flags,
+ };
+ output_for_each_surface(output, send_presented_iterator, &event);
+}
+
void handle_new_output(struct wl_listener *listener, void *data) {
struct sway_server *server = wl_container_of(listener, server, new_output);
struct wlr_output *wlr_output = data;
@@ -571,6 +581,7 @@ void output_add_listeners(struct sway_output *output) {
output->mode.notify = handle_mode;
output->transform.notify = handle_transform;
output->scale.notify = handle_scale;
+ output->present.notify = handle_present;
output->damage_frame.notify = damage_handle_frame;
output->damage_destroy.notify = damage_handle_destroy;
}
diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c
index b2f7f922..955b05d6 100644
--- a/sway/desktop/transaction.c
+++ b/sway/desktop/transaction.c
@@ -11,6 +11,8 @@
#include "sway/desktop.h"
#include "sway/desktop/idle_inhibit_v1.h"
#include "sway/desktop/transaction.h"
+#include "sway/input/cursor.h"
+#include "sway/input/input-manager.h"
#include "sway/output.h"
#include "sway/tree/container.h"
#include "sway/tree/node.h"
@@ -25,8 +27,6 @@ struct sway_transaction {
size_t num_waiting;
size_t num_configures;
struct timespec commit_time;
- void (*callback)(void *data);
- void *callback_data;
};
struct sway_transaction_instruction {
@@ -298,8 +298,11 @@ static void transaction_apply(struct sway_transaction *transaction) {
node->instruction = NULL;
}
- if (transaction->callback) {
- transaction->callback(transaction->callback_data);
+ if (root->outputs->length) {
+ struct sway_seat *seat;
+ wl_list_for_each(seat, &server.input->seats, link) {
+ cursor_rebase(seat->cursor);
+ }
}
}
@@ -505,7 +508,14 @@ void transaction_notify_view_ready_by_size(struct sway_view *view,
}
}
-static void do_commit_dirty(struct sway_transaction *transaction) {
+void transaction_commit_dirty(void) {
+ if (!server.dirty_nodes->length) {
+ return;
+ }
+ struct sway_transaction *transaction = transaction_create();
+ if (!transaction) {
+ return;
+ }
for (int i = 0; i < server.dirty_nodes->length; ++i) {
struct sway_node *node = server.dirty_nodes->items[i];
transaction_add_node(transaction, node);
@@ -524,28 +534,3 @@ static void do_commit_dirty(struct sway_transaction *transaction) {
transaction_progress_queue();
}
}
-
-void transaction_commit_dirty(void) {
- if (!server.dirty_nodes->length) {
- return;
- }
- struct sway_transaction *transaction = transaction_create();
- if (!transaction) {
- return;
- }
- do_commit_dirty(transaction);
-}
-
-void transaction_commit_dirty_with_callback(
- void (*callback)(void *data), void *data) {
- if (!server.dirty_nodes->length) {
- return;
- }
- struct sway_transaction *transaction = transaction_create();
- if (!transaction) {
- return;
- }
- transaction->callback = callback;
- transaction->callback_data = data;
- do_commit_dirty(transaction);
-}
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index 064e2707..0b2ebc96 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -397,11 +397,6 @@ static void handle_unmap(struct wl_listener *listener, void *data) {
wl_list_remove(&xdg_shell_view->set_app_id.link);
}
-static void do_rebase(void *data) {
- struct sway_cursor *cursor = data;
- cursor_rebase(cursor);
-}
-
static void handle_map(struct wl_listener *listener, void *data) {
struct sway_xdg_shell_view *xdg_shell_view =
wl_container_of(listener, xdg_shell_view, map);
@@ -428,8 +423,7 @@ static void handle_map(struct wl_listener *listener, void *data) {
view_map(view, view->wlr_xdg_surface->surface,
xdg_surface->toplevel->client_pending.fullscreen, csd);
- struct sway_seat *seat = input_manager_current_seat();
- transaction_commit_dirty_with_callback(do_rebase, seat->cursor);
+ transaction_commit_dirty();
xdg_shell_view->commit.notify = handle_commit;
wl_signal_add(&xdg_surface->surface->events.commit,
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index 90bf55b2..692cfbf5 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -394,11 +394,6 @@ static void handle_unmap(struct wl_listener *listener, void *data) {
wl_list_remove(&xdg_shell_v6_view->set_app_id.link);
}
-static void do_rebase(void *data) {
- struct sway_cursor *cursor = data;
- cursor_rebase(cursor);
-}
-
static void handle_map(struct wl_listener *listener, void *data) {
struct sway_xdg_shell_v6_view *xdg_shell_v6_view =
wl_container_of(listener, xdg_shell_v6_view, map);
@@ -419,8 +414,7 @@ static void handle_map(struct wl_listener *listener, void *data) {
view_map(view, view->wlr_xdg_surface_v6->surface,
xdg_surface->toplevel->client_pending.fullscreen, csd);
- struct sway_seat *seat = input_manager_current_seat();
- transaction_commit_dirty_with_callback(do_rebase, seat->cursor);
+ transaction_commit_dirty();
xdg_shell_v6_view->commit.notify = handle_commit;
wl_signal_add(&xdg_surface->surface->events.commit,
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 95275937..0c41d960 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -391,11 +391,6 @@ static void handle_unmap(struct wl_listener *listener, void *data) {
wl_list_remove(&xwayland_view->commit.link);
}
-static void do_rebase(void *data) {
- struct sway_cursor *cursor = data;
- cursor_rebase(cursor);
-}
-
static void handle_map(struct wl_listener *listener, void *data) {
struct sway_xwayland_view *xwayland_view =
wl_container_of(listener, xwayland_view, map);
@@ -422,8 +417,7 @@ static void handle_map(struct wl_listener *listener, void *data) {
// Put it back into the tree
view_map(view, xsurface->surface, xsurface->fullscreen, false);
- struct sway_seat *seat = input_manager_current_seat();
- transaction_commit_dirty_with_callback(do_rebase, seat->cursor);
+ transaction_commit_dirty();
}
static void handle_request_configure(struct wl_listener *listener, void *data) {