From 02a1ae169e66f53f2174add581c19d165d8ba882 Mon Sep 17 00:00:00 2001 From: Simon Zeni Date: Tue, 9 Nov 2021 09:42:22 -0500 Subject: render/allocator: make wlr_allocator part of the public API --- render/allocator/allocator.c | 1 + render/allocator/drm_dumb.c | 6 ++++-- render/allocator/gbm.c | 3 +++ render/allocator/shm.c | 3 +++ 4 files changed, 11 insertions(+), 2 deletions(-) (limited to 'render/allocator') diff --git a/render/allocator/allocator.c b/render/allocator/allocator.c index 0244e07a..15d55a0d 100644 --- a/render/allocator/allocator.c +++ b/render/allocator/allocator.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include diff --git a/render/allocator/drm_dumb.c b/render/allocator/drm_dumb.c index 170d9c33..5b47462b 100644 --- a/render/allocator/drm_dumb.c +++ b/render/allocator/drm_dumb.c @@ -7,11 +7,13 @@ #include #include #include +#include +#include +#include +#include #include #include #include -#include -#include #include "render/allocator/drm_dumb.h" #include "render/pixel_format.h" diff --git a/render/allocator/gbm.c b/render/allocator/gbm.c index 86e4749b..b546e412 100644 --- a/render/allocator/gbm.c +++ b/render/allocator/gbm.c @@ -4,8 +4,11 @@ #include #include #include +#include +#include #include #include + #include "render/allocator/gbm.h" static const struct wlr_buffer_impl buffer_impl; diff --git a/render/allocator/shm.c b/render/allocator/shm.c index 77054dbe..044d5eb1 100644 --- a/render/allocator/shm.c +++ b/render/allocator/shm.c @@ -3,7 +3,10 @@ #include #include #include +#include +#include #include + #include "render/pixel_format.h" #include "render/allocator/shm.h" #include "util/shm.h" -- cgit v1.2.3