diff --git a/backend/backend.c b/backend/backend.c index e4e8c8d8e..2be6a5c5e 100644 --- a/backend/backend.c +++ b/backend/backend.c @@ -14,7 +14,6 @@ #include #include "backend/backend.h" #include "backend/multi.h" -#include "render/allocator/allocator.h" #include "types/wlr_output.h" #include "util/env.h" #include "util/time.h" diff --git a/include/render/allocator/drm_dumb.h b/include/render/allocator/drm_dumb.h index 23c150bc3..f505d651a 100644 --- a/include/render/allocator/drm_dumb.h +++ b/include/render/allocator/drm_dumb.h @@ -1,9 +1,9 @@ #ifndef RENDER_ALLOCATOR_DRM_DUMB_H #define RENDER_ALLOCATOR_DRM_DUMB_H +#include #include #include -#include "render/allocator/allocator.h" struct wlr_drm_dumb_buffer { struct wlr_buffer base; diff --git a/include/render/allocator/gbm.h b/include/render/allocator/gbm.h index 7e043faf5..7d0016eb4 100644 --- a/include/render/allocator/gbm.h +++ b/include/render/allocator/gbm.h @@ -2,9 +2,9 @@ #define RENDER_ALLOCATOR_GBM_H #include +#include #include #include -#include "render/allocator/allocator.h" struct wlr_gbm_buffer { struct wlr_buffer base; diff --git a/include/render/allocator/shm.h b/include/render/allocator/shm.h index 4b80e4753..602efdc35 100644 --- a/include/render/allocator/shm.h +++ b/include/render/allocator/shm.h @@ -1,8 +1,8 @@ #ifndef RENDER_ALLOCATOR_SHM_H #define RENDER_ALLOCATOR_SHM_H +#include #include -#include "render/allocator/allocator.h" struct wlr_shm_buffer { struct wlr_buffer base; diff --git a/render/swapchain.c b/render/swapchain.c index 233d85eb0..e87a99ead 100644 --- a/render/swapchain.c +++ b/render/swapchain.c @@ -1,9 +1,9 @@ #include #include #include +#include #include #include -#include "render/allocator/allocator.h" #include "render/drm_format_set.h" static void swapchain_handle_allocator_destroy(struct wl_listener *listener, diff --git a/types/output/cursor.c b/types/output/cursor.c index afa6b95bc..d8cdd984a 100644 --- a/types/output/cursor.c +++ b/types/output/cursor.c @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -9,7 +10,6 @@ #include #include #include -#include "render/allocator/allocator.h" #include "types/wlr_buffer.h" #include "types/wlr_output.h" diff --git a/types/output/output.c b/types/output/output.c index f8ed118f5..c8a174959 100644 --- a/types/output/output.c +++ b/types/output/output.c @@ -3,11 +3,11 @@ #include #include #include +#include #include #include #include #include -#include "render/allocator/allocator.h" #include "types/wlr_output.h" #include "util/env.h" #include "util/global.h" diff --git a/types/output/render.c b/types/output/render.c index b71478a6f..3fb2b22ec 100644 --- a/types/output/render.c +++ b/types/output/render.c @@ -2,12 +2,12 @@ #include #include #include +#include #include #include #include #include #include "backend/backend.h" -#include "render/allocator/allocator.h" #include "render/drm_format_set.h" #include "render/wlr_renderer.h" #include "render/pixel_format.h"