Add support for fractional-scale-v1

References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/3511
This commit is contained in:
Simon Ser 2023-02-10 18:07:26 +01:00 committed by Kenny Levinsen
parent 1cab17ada2
commit 9162b536f6
2 changed files with 16 additions and 0 deletions

View file

@ -14,6 +14,7 @@
#include <wlr/types/wlr_data_control_v1.h>
#include <wlr/types/wlr_drm.h>
#include <wlr/types/wlr_export_dmabuf_v1.h>
#include <wlr/types/wlr_fractional_scale_v1.h>
#include <wlr/types/wlr_gamma_control_v1.h>
#include <wlr/types/wlr_idle.h>
#include <wlr/types/wlr_idle_notify_v1.h>
@ -214,6 +215,7 @@ bool server_init(struct sway_server *server) {
wlr_single_pixel_buffer_manager_v1_create(server->wl_display);
server->content_type_manager_v1 =
wlr_content_type_manager_v1_create(server->wl_display, 1);
wlr_fractional_scale_manager_v1_create(server->wl_display, 1);
struct wlr_xdg_foreign_registry *foreign_registry =
wlr_xdg_foreign_registry_create(server->wl_display);