backend/drm: stop tracking overlay planes

We don't do anything with them. Once we do, we can easily add this back.
This commit is contained in:
Simon Ser 2020-12-06 17:06:48 +01:00
parent 29da97c185
commit 863acb26c0
2 changed files with 7 additions and 24 deletions

View file

@ -63,13 +63,6 @@ struct wlr_drm_crtc {
struct wlr_drm_plane *primary;
struct wlr_drm_plane *cursor;
/*
* We don't support overlay planes yet, but we keep track of them to
* give to DRM lease clients.
*/
size_t num_overlays;
uint32_t *overlays;
union wlr_drm_crtc_props props;
};