aboutsummaryrefslogtreecommitdiffstats
path: root/sway/server.c
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2024-02-15 12:01:24 +0100
committerLibravatar Simon Ser <contact@emersion.fr>2024-02-15 15:56:36 +0100
commit541e6e260c2df0346b421cacfaf4ce5d204c49ba (patch)
tree10a90352976b9d7e48e9846f8a3e8fb30b4379c5 /sway/server.c
parentFix build with wlroots DRM backend disabled (diff)
downloadsway-541e6e260c2df0346b421cacfaf4ce5d204c49ba.tar.gz
sway-541e6e260c2df0346b421cacfaf4ce5d204c49ba.tar.zst
sway-541e6e260c2df0346b421cacfaf4ce5d204c49ba.zip
Drop unnecessary includes from sway/server.h
Diffstat (limited to 'sway/server.c')
-rw-r--r--sway/server.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/server.c b/sway/server.c
index 8b8ccce9..5b389f69 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -8,24 +8,32 @@
8#include <wlr/backend/headless.h> 8#include <wlr/backend/headless.h>
9#include <wlr/backend/multi.h> 9#include <wlr/backend/multi.h>
10#include <wlr/config.h> 10#include <wlr/config.h>
11#include <wlr/render/allocator.h>
11#include <wlr/render/wlr_renderer.h> 12#include <wlr/render/wlr_renderer.h>
12#include <wlr/types/wlr_compositor.h> 13#include <wlr/types/wlr_compositor.h>
13#include <wlr/types/wlr_content_type_v1.h> 14#include <wlr/types/wlr_content_type_v1.h>
14#include <wlr/types/wlr_cursor_shape_v1.h> 15#include <wlr/types/wlr_cursor_shape_v1.h>
15#include <wlr/types/wlr_data_control_v1.h> 16#include <wlr/types/wlr_data_control_v1.h>
17#include <wlr/types/wlr_data_device.h>
16#include <wlr/types/wlr_drm.h> 18#include <wlr/types/wlr_drm.h>
17#include <wlr/types/wlr_export_dmabuf_v1.h> 19#include <wlr/types/wlr_export_dmabuf_v1.h>
20#include <wlr/types/wlr_ext_foreign_toplevel_list_v1.h>
21#include <wlr/types/wlr_foreign_toplevel_management_v1.h>
18#include <wlr/types/wlr_fractional_scale_v1.h> 22#include <wlr/types/wlr_fractional_scale_v1.h>
19#include <wlr/types/wlr_gamma_control_v1.h> 23#include <wlr/types/wlr_gamma_control_v1.h>
20#include <wlr/types/wlr_idle_notify_v1.h> 24#include <wlr/types/wlr_idle_notify_v1.h>
21#include <wlr/types/wlr_layer_shell_v1.h> 25#include <wlr/types/wlr_layer_shell_v1.h>
22#include <wlr/types/wlr_linux_dmabuf_v1.h> 26#include <wlr/types/wlr_linux_dmabuf_v1.h>
27#include <wlr/types/wlr_output_management_v1.h>
28#include <wlr/types/wlr_output_power_management_v1.h>
23#include <wlr/types/wlr_pointer_constraints_v1.h> 29#include <wlr/types/wlr_pointer_constraints_v1.h>
30#include <wlr/types/wlr_presentation_time.h>
24#include <wlr/types/wlr_primary_selection_v1.h> 31#include <wlr/types/wlr_primary_selection_v1.h>
25#include <wlr/types/wlr_relative_pointer_v1.h> 32#include <wlr/types/wlr_relative_pointer_v1.h>
26#include <wlr/types/wlr_screencopy_v1.h> 33#include <wlr/types/wlr_screencopy_v1.h>
27#include <wlr/types/wlr_security_context_v1.h> 34#include <wlr/types/wlr_security_context_v1.h>
28#include <wlr/types/wlr_server_decoration.h> 35#include <wlr/types/wlr_server_decoration.h>
36#include <wlr/types/wlr_session_lock_v1.h>
29#include <wlr/types/wlr_single_pixel_buffer_v1.h> 37#include <wlr/types/wlr_single_pixel_buffer_v1.h>
30#include <wlr/types/wlr_subcompositor.h> 38#include <wlr/types/wlr_subcompositor.h>
31#include <wlr/types/wlr_tablet_v2.h> 39#include <wlr/types/wlr_tablet_v2.h>