commit dcdb72757a5ec591c692df5e96c57c51758dbd8f
parent 30f5c3a9117be3e4911cba02693f7b45a197da93
Author: Manuel Stoeckl <code@mstoeckl.com>
Date: Mon, 29 Apr 2024 21:01:44 -0400
desktop/layer_shell: provide fractional scale on creation
Also, send a matching wl_surface.preferred_buffer_scale event.
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
@@ -2,6 +2,7 @@
#include <stdlib.h>
#include <string.h>
#include <wayland-server-core.h>
+#include <wlr/types/wlr_fractional_scale_v1.h>
#include <wlr/types/wlr_layer_shell_v1.h>
#include <wlr/types/wlr_output.h>
#include <wlr/types/wlr_scene.h>
@@ -432,6 +433,12 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) {
surface->output = output;
+ // now that the surface's output is known, we can advertise its scale
+ wlr_fractional_scale_v1_notify_scale(surface->layer_surface->surface,
+ layer_surface->output->scale);
+ wlr_surface_set_preferred_buffer_scale(surface->layer_surface->surface,
+ ceil(layer_surface->output->scale));
+
surface->surface_commit.notify = handle_surface_commit;
wl_signal_add(&layer_surface->surface->events.commit,
&surface->surface_commit);