diff options
author | Simon Ser <contact@emersion.fr> | 2019-11-20 00:45:19 +0100 |
---|---|---|
committer | Scott Anderson <scott@anderso.nz> | 2019-11-20 02:05:03 +0000 |
commit | 16e5e9541b3de49e397a3d2caa3212db25487648 (patch) | |
tree | 9d1cc82dc037db865181a6742eade6d866803cd9 /include | |
parent | 685a5a11a9f6305f7479550247b333ffdf036d73 (diff) |
Add -Wmissing-prototypes
This requires functions without a prototype definition to be static.
This allows to detect dead code, export less symbols and put shared
functions in headers.
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/drm/drm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h index 7f66f9c9..62ade510 100644 --- a/include/backend/drm/drm.h +++ b/include/backend/drm/drm.h @@ -151,4 +151,9 @@ bool set_drm_connector_gamma(struct wlr_output *output, size_t size, bool drm_connector_set_mode(struct wlr_output *output, struct wlr_output_mode *mode); +bool legacy_crtc_set_cursor(struct wlr_drm_backend *drm, + struct wlr_drm_crtc *crtc, struct gbm_bo *bo); +bool legacy_crtc_move_cursor(struct wlr_drm_backend *drm, + struct wlr_drm_crtc *crtc, int x, int y); + #endif |