screencopy-v1: drop unnecessary pixman_region32_t casts

The Pixman API now accepts const parameters.
This commit is contained in:
Simon Ser 2023-02-21 10:27:27 +01:00 committed by Isaac Freund
parent bbd5145d8a
commit d25ab03326
1 changed files with 1 additions and 2 deletions

View File

@ -45,8 +45,7 @@ static void screencopy_damage_accumulate(struct screencopy_damage *damage,
if (state->committed & WLR_OUTPUT_STATE_DAMAGE) {
// If the compositor submitted damage, copy it over
pixman_region32_union(region, region,
(pixman_region32_t *) &state->damage);
pixman_region32_union(region, region, &state->damage);
pixman_region32_intersect_rect(region, region, 0, 0,
output->width, output->height);
} else if (state->committed & WLR_OUTPUT_STATE_BUFFER) {