backend/drm: move drm_plane_finish_surface() to drm.c

This function touches queued_fb/current_fb, which the renderer has
nothing to do with.
This commit is contained in:
Simon Ser 2023-11-23 16:05:37 +01:00 committed by Simon Zeni
parent 260dbdf704
commit f935ff0ef6
3 changed files with 13 additions and 14 deletions

View file

@ -31,12 +31,12 @@ void finish_drm_renderer(struct wlr_drm_renderer *renderer);
bool init_drm_surface(struct wlr_drm_surface *surf,
struct wlr_drm_renderer *renderer, int width, int height,
const struct wlr_drm_format *drm_format);
void finish_drm_surface(struct wlr_drm_surface *surf);
struct wlr_buffer *drm_surface_blit(struct wlr_drm_surface *surf,
struct wlr_buffer *buffer);
bool drm_plane_pick_render_format(struct wlr_drm_plane *plane,
struct wlr_drm_format *fmt, struct wlr_drm_renderer *renderer);
void drm_plane_finish_surface(struct wlr_drm_plane *plane);
#endif