mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 16:05:58 +01:00
more scaled surface damage fixes
This commit is contained in:
parent
f0cd784f79
commit
0f19bd99f8
1 changed files with 4 additions and 2 deletions
|
@ -671,8 +671,10 @@ void CHyprRenderer::damageSurface(wlr_surface* pSurface, double x, double y) {
|
||||||
double lx = 0, ly = 0;
|
double lx = 0, ly = 0;
|
||||||
wlr_output_layout_output_coords(g_pCompositor->m_sWLROutputLayout, m->output, &lx, &ly);
|
wlr_output_layout_output_coords(g_pCompositor->m_sWLROutputLayout, m->output, &lx, &ly);
|
||||||
|
|
||||||
wlr_region_scale(&damageBoxForEach, &damageBox, m->scale);
|
pixman_region32_copy(&damageBoxForEach, &damageBox);
|
||||||
pixman_region32_translate(&damageBoxForEach, lx + x, ly + y);
|
pixman_region32_translate(&damageBoxForEach, x, y);
|
||||||
|
wlr_region_scale(&damageBoxForEach, &damageBoxForEach, m->scale);
|
||||||
|
pixman_region32_translate(&damageBoxForEach, lx, ly);
|
||||||
|
|
||||||
wlr_output_damage_add(m->damage, &damageBoxForEach);
|
wlr_output_damage_add(m->damage, &damageBoxForEach);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue