Lines 3-15
Link Here
|
3 |
#include <stdbool.h> |
3 |
#include <stdbool.h> |
4 |
#include <wayland-server-core.h> |
4 |
#include <wayland-server-core.h> |
5 |
#include <wlr/backend.h> |
5 |
#include <wlr/backend.h> |
|
|
6 |
#include <wlr/config.h> |
6 |
#include <wlr/render/allocator.h> |
7 |
#include <wlr/render/allocator.h> |
7 |
#include <wlr/render/wlr_renderer.h> |
8 |
#include <wlr/render/wlr_renderer.h> |
8 |
#include <wlr/types/wlr_compositor.h> |
9 |
#include <wlr/types/wlr_compositor.h> |
9 |
#include <wlr/types/wlr_data_device.h> |
10 |
#include <wlr/types/wlr_data_device.h> |
10 |
#include <wlr/types/wlr_input_method_v2.h> |
11 |
#include <wlr/types/wlr_input_method_v2.h> |
11 |
#include <wlr/types/wlr_foreign_toplevel_management_v1.h> |
12 |
#include <wlr/types/wlr_foreign_toplevel_management_v1.h> |
|
|
13 |
#if WLR_HAS_DRM_BACKEND |
12 |
#include <wlr/types/wlr_drm_lease_v1.h> |
14 |
#include <wlr/types/wlr_drm_lease_v1.h> |
|
|
15 |
#endif |
13 |
#include <wlr/types/wlr_layer_shell_v1.h> |
16 |
#include <wlr/types/wlr_layer_shell_v1.h> |
14 |
#include <wlr/types/wlr_output_management_v1.h> |
17 |
#include <wlr/types/wlr_output_management_v1.h> |
15 |
#include <wlr/types/wlr_output_power_management_v1.h> |
18 |
#include <wlr/types/wlr_output_power_management_v1.h> |
Lines 91-98
struct sway_server {
Link Here
|
91 |
struct wl_listener xdg_decoration; |
94 |
struct wl_listener xdg_decoration; |
92 |
struct wl_list xdg_decorations; // sway_xdg_decoration::link |
95 |
struct wl_list xdg_decorations; // sway_xdg_decoration::link |
|
|
96 |
#if WLR_HAS_DRM_BACKEND |
93 |
struct wlr_drm_lease_v1_manager *drm_lease_manager; |
97 |
struct wlr_drm_lease_v1_manager *drm_lease_manager; |
94 |
struct wl_listener drm_lease_request; |
98 |
struct wl_listener drm_lease_request; |
|
|
99 |
#endif |
95 |
struct wlr_pointer_constraints_v1 *pointer_constraints; |
100 |
struct wlr_pointer_constraints_v1 *pointer_constraints; |
96 |
struct wl_listener pointer_constraint; |
101 |
struct wl_listener pointer_constraint; |