aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-05-30 12:59:41 +0200
committerAlexander Orzechowski <alex@ozal.ski>2023-05-31 00:08:49 +0000
commit3f0487d310974f6ff889ca80e4fb4005553814ed (patch)
tree619f1ec2c578b895cce0b47920372e0fb79e6b6b
parent5bcd537ff465b36bf5f587bc99ce04b2ec18aec2 (diff)
backend/drm: move forward decl up for drmModeModeInfo
This allows doc generators to properly associate the doc comment with the function instead of the typedef.
-rw-r--r--include/wlr/backend/drm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/backend/drm.h b/include/wlr/backend/drm.h
index 1617aa15..414d90c0 100644
--- a/include/wlr/backend/drm.h
+++ b/include/wlr/backend/drm.h
@@ -15,6 +15,7 @@
#include <wlr/types/wlr_output.h>
struct wlr_drm_backend;
+typedef struct _drmModeModeInfo drmModeModeInfo;
struct wlr_drm_lease {
int fd;
@@ -74,7 +75,6 @@ void wlr_drm_lease_terminate(struct wlr_drm_lease *lease);
/**
* Add mode to the list of available modes.
*/
-typedef struct _drmModeModeInfo drmModeModeInfo;
struct wlr_output_mode *wlr_drm_connector_add_mode(struct wlr_output *output,
const drmModeModeInfo *mode);