chase wlroots: use WLR_PRIVATE (MR 4842)

Ref: 6006023a377868187f73d2e0922bbe952072684f
("Use WLR_PRIVATE for private fields")
This commit is contained in:
Consolatis 2024-11-27 04:48:45 +01:00 committed by Johan Malm
parent 2b1923c867
commit 0c2cf61895
5 changed files with 11 additions and 9 deletions

View file

@ -58,8 +58,8 @@ scene_output_damage(struct wlr_scene_output *scene_output,
if (pixman_region32_not_empty(&clipped)) {
wlr_damage_ring_add(&scene_output->damage_ring, &clipped);
pixman_region32_union(&scene_output->pending_commit_damage,
&scene_output->pending_commit_damage, &clipped);
pixman_region32_union(&scene_output->WLR_PRIVATE.pending_commit_damage,
&scene_output->WLR_PRIVATE.pending_commit_damage, &clipped);
}
pixman_region32_fini(&clipped);
@ -85,8 +85,10 @@ lab_wlr_scene_output_commit(struct wlr_scene_output *scene_output,
* rendering on every output commit and overloads CPU.
* We also need to verify the necessity of wants_magnification.
*/
if (!wlr_output->needs_frame && !pixman_region32_not_empty(
&scene_output->pending_commit_damage) && !wants_magnification) {
if (!wlr_output->needs_frame
&& !pixman_region32_not_empty(
&scene_output->WLR_PRIVATE.pending_commit_damage)
&& !wants_magnification) {
return true;
}