aboutsummaryrefslogtreecommitdiff
path: root/include/backend
diff options
context:
space:
mode:
authorKirill Primak <vyivel@eclair.cafe>2023-06-05 23:45:28 +0300
committerAlexander Orzechowski <alex@ozal.ski>2023-06-05 21:06:19 +0000
commit3dc646ea889084cd7aa980f38124b5df548cf10d (patch)
tree1ee02a0e22793f8c6d7efb4b08d8a66aa8ba4d2c /include/backend
parentc5f4df6c961abef073414e14388878df8cd16947 (diff)
Add some missing includes/declarations
Diffstat (limited to 'include/backend')
-rw-r--r--include/backend/drm/properties.h1
-rw-r--r--include/backend/drm/renderer.h2
-rw-r--r--include/backend/session/session.h3
3 files changed, 6 insertions, 0 deletions
diff --git a/include/backend/drm/properties.h b/include/backend/drm/properties.h
index b6ca14f1..103d1259 100644
--- a/include/backend/drm/properties.h
+++ b/include/backend/drm/properties.h
@@ -2,6 +2,7 @@
#define BACKEND_DRM_PROPERTIES_H
#include <stdbool.h>
+#include <stddef.h>
#include <stdint.h>
/*
diff --git a/include/backend/drm/renderer.h b/include/backend/drm/renderer.h
index 07fcf28a..d29fe2ad 100644
--- a/include/backend/drm/renderer.h
+++ b/include/backend/drm/renderer.h
@@ -5,8 +5,10 @@
#include <stdint.h>
#include <wlr/backend.h>
#include <wlr/render/wlr_renderer.h>
+#include <wlr/util/addon.h>
struct wlr_drm_backend;
+struct wlr_drm_format;
struct wlr_drm_plane;
struct wlr_buffer;
diff --git a/include/backend/session/session.h b/include/backend/session/session.h
index 5eca7f57..0275f69f 100644
--- a/include/backend/session/session.h
+++ b/include/backend/session/session.h
@@ -1,6 +1,9 @@
#ifndef BACKEND_SESSION_SESSION_H
#define BACKEND_SESSION_SESSION_H
+#include <stdbool.h>
+
+struct wl_display;
struct wlr_session;
struct wlr_session *libseat_session_create(struct wl_display *disp);