From bbd5145d8a5212f350c01e5f8519a81783ced2cc Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 21 Feb 2023 10:26:41 +0100 Subject: [PATCH] backend/drm: drop unnecessary pixman_region32_t casts The Pixman API now accepts const parameters. --- backend/drm/libliftoff.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/drm/libliftoff.c b/backend/drm/libliftoff.c index 812ce7f8..ecc79ce9 100644 --- a/backend/drm/libliftoff.c +++ b/backend/drm/libliftoff.c @@ -313,11 +313,10 @@ static bool crtc_commit(struct wlr_drm_connector *conn, uint32_t fb_damage_clips = 0; if ((state->base->committed & WLR_OUTPUT_STATE_DAMAGE) && - pixman_region32_not_empty((pixman_region32_t *)&state->base->damage) && + pixman_region32_not_empty(&state->base->damage) && crtc->primary->props.fb_damage_clips != 0) { int rects_len; - const pixman_box32_t *rects = pixman_region32_rectangles( - (pixman_region32_t *)&state->base->damage, &rects_len); + const pixman_box32_t *rects = pixman_region32_rectangles(&state->base->damage, &rects_len); if (drmModeCreatePropertyBlob(drm->fd, rects, sizeof(*rects) * rects_len, &fb_damage_clips) != 0) { wlr_log_errno(WLR_ERROR, "Failed to create FB_DAMAGE_CLIPS property blob");