mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-12 16:35:58 +01:00
backend/drm: remove unused wlr_drm_plane.drm_format
This commit is contained in:
parent
248c7787c7
commit
352fdd1bb0
2 changed files with 0 additions and 16 deletions
|
@ -105,21 +105,6 @@ static bool add_plane(struct wlr_drm_backend *drm,
|
|||
DRM_FORMAT_MOD_INVALID);
|
||||
}
|
||||
|
||||
// Choose an RGB format for the plane
|
||||
uint32_t rgb_format = DRM_FORMAT_INVALID;
|
||||
for (size_t j = 0; j < drm_plane->count_formats; ++j) {
|
||||
uint32_t fmt = drm_plane->formats[j];
|
||||
|
||||
if (fmt == DRM_FORMAT_ARGB8888) {
|
||||
// Prefer formats with alpha channel
|
||||
rgb_format = fmt;
|
||||
break;
|
||||
} else if (fmt == DRM_FORMAT_XRGB8888) {
|
||||
rgb_format = fmt;
|
||||
}
|
||||
}
|
||||
p->drm_format = rgb_format;
|
||||
|
||||
if (p->props.in_formats) {
|
||||
uint64_t blob_id;
|
||||
if (!get_drm_prop(drm->fd, p->id, p->props.in_formats, &blob_id)) {
|
||||
|
|
|
@ -32,7 +32,6 @@ struct wlr_drm_plane {
|
|||
/* Buffer currently displayed on screen */
|
||||
struct wlr_drm_fb current_fb;
|
||||
|
||||
uint32_t drm_format; // ARGB8888 or XRGB8888
|
||||
struct wlr_drm_format_set formats;
|
||||
|
||||
// Only used by cursor
|
||||
|
|
Loading…
Reference in a new issue