mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 15:25:59 +01:00
fix yesterday's commit
This commit is contained in:
parent
ef21baaf88
commit
9a699ab153
1 changed files with 12 additions and 5 deletions
|
@ -486,16 +486,23 @@ void CHyprOpenGLImpl::renderTextureWithBlur(const CTexture& tex, wlr_box* pBox,
|
||||||
// amazing hack: the surface has an opaque region!
|
// amazing hack: the surface has an opaque region!
|
||||||
pixman_region32_t inverseOpaque;
|
pixman_region32_t inverseOpaque;
|
||||||
pixman_region32_init(&inverseOpaque);
|
pixman_region32_init(&inverseOpaque);
|
||||||
pixman_box32_t monbox = {0, 0, m_RenderData.pMonitor->vecSize.x, m_RenderData.pMonitor->vecSize.y};
|
if (a == 255.f) {
|
||||||
pixman_region32_inverse(&inverseOpaque, &pSurface->current.opaque, &monbox);
|
pixman_box32_t monbox = {0, 0, m_RenderData.pMonitor->vecSize.x, m_RenderData.pMonitor->vecSize.y};
|
||||||
pixman_region32_intersect(&damage, &damage, &inverseOpaque);
|
pixman_region32_copy(&inverseOpaque, &pSurface->current.opaque);
|
||||||
pixman_region32_fini(&inverseOpaque);
|
pixman_region32_translate(&inverseOpaque, pBox->x, pBox->y);
|
||||||
|
pixman_region32_inverse(&inverseOpaque, &inverseOpaque, &monbox);
|
||||||
|
pixman_region32_intersect(&inverseOpaque, &damage, &inverseOpaque);
|
||||||
|
} else {
|
||||||
|
pixman_region32_copy(&inverseOpaque, &damage);
|
||||||
|
}
|
||||||
|
|
||||||
if (!pixman_region32_not_empty(&damage))
|
if (!pixman_region32_not_empty(&damage))
|
||||||
return; // if its empty, reject.
|
return; // if its empty, reject.
|
||||||
|
|
||||||
// blur the main FB, it will be rendered onto the mirror
|
// blur the main FB, it will be rendered onto the mirror
|
||||||
const auto POUTFB = blurMainFramebufferWithDamage(a, pBox, &damage);
|
const auto POUTFB = blurMainFramebufferWithDamage(a, pBox, &inverseOpaque);
|
||||||
|
|
||||||
|
pixman_region32_fini(&inverseOpaque);
|
||||||
|
|
||||||
// bind primary
|
// bind primary
|
||||||
m_mMonitorRenderResources[m_RenderData.pMonitor].primaryFB.bind();
|
m_mMonitorRenderResources[m_RenderData.pMonitor].primaryFB.bind();
|
||||||
|
|
Loading…
Reference in a new issue