diff options
author | Simon Ser <contact@emersion.fr> | 2021-05-31 19:35:25 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-06-02 11:08:52 +0200 |
commit | e06ea4e84a4e6882ecaa58697280ac89d3aa4dba (patch) | |
tree | b941ef60cca9814899b6e76dc9447646de570c8f /include/backend/drm | |
parent | 9e9be83a58382b61caa86b1aeca77b8794099569 (diff) |
backend/drm: remove format arg from drm_plane_init_surface
This was always set to ARGB8888.
Diffstat (limited to 'include/backend/drm')
-rw-r--r-- | include/backend/drm/renderer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/backend/drm/renderer.h b/include/backend/drm/renderer.h index 089c7923..c4dee425 100644 --- a/include/backend/drm/renderer.h +++ b/include/backend/drm/renderer.h @@ -57,7 +57,7 @@ bool drm_surface_render_black_frame(struct wlr_drm_surface *surf); bool drm_plane_init_surface(struct wlr_drm_plane *plane, struct wlr_drm_backend *drm, int32_t width, uint32_t height, - uint32_t format, bool with_modifiers); + bool with_modifiers); void drm_plane_finish_surface(struct wlr_drm_plane *plane); bool drm_plane_lock_surface(struct wlr_drm_plane *plane, struct wlr_drm_backend *drm); |