This commit is contained in:
dmitry 2021-11-20 21:36:57 +03:00
parent c375120d7c
commit a8f6d41630
5 changed files with 13 additions and 13 deletions

View file

@ -4,7 +4,7 @@
#include <unistd.h>
#include <wayland-server-core.h>
#include <wlr/types/wlr_output.h>
#include <wlr/types/wlr_workspace_v1.h>
#include <wlr/types/wlr_ext_workspace_v1.h>
#include "config.h"
#include "sway/tree/node.h"
#include "sway/tree/view.h"
@ -58,7 +58,7 @@ struct sway_output {
int max_render_time; // In milliseconds
struct wl_event_source *repaint_timer;
struct wlr_workspace_group_handle_v1 *workspace_group;
struct wlr_ext_workspace_group_handle_v1 *workspace_group;
};
struct sway_output *output_create(struct wlr_output *wlr_output);

View file

@ -9,7 +9,7 @@
#include <wlr/types/wlr_data_device.h>
#include <wlr/types/wlr_input_method_v2.h>
#include <wlr/types/wlr_foreign_toplevel_management_v1.h>
#include <wlr/types/wlr_workspace_v1.h>
#include <wlr/types/wlr_ext_workspace_v1.h>
#include <wlr/types/wlr_drm_lease_v1.h>
#include <wlr/types/wlr_layer_shell_v1.h>
#include <wlr/types/wlr_output_management_v1.h>
@ -91,7 +91,7 @@ struct sway_server {
struct wlr_input_method_manager_v2 *input_method;
struct wlr_text_input_manager_v3 *text_input;
struct wlr_foreign_toplevel_manager_v1 *foreign_toplevel_manager;
struct wlr_workspace_manager_v1 *workspace_manager;
struct wlr_ext_workspace_manager_v1 *workspace_manager;
struct wl_listener workspace_manager_commit_request;
struct wlr_xdg_activation_v1 *xdg_activation_v1;