expo: chase hyprland

I've opted to remove the optional parameters, since they match the defaults, so unless there is a specific reason for explicitly setting them this is easier
This commit is contained in:
Constantin Piber 2025-01-05 23:13:33 +01:00 committed by GitHub
parent 920af33577
commit b6b31113ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -406,7 +406,7 @@ void COverview::fullRender() {
texbox.scale(pMonitor->scale).translate(pos.value()); texbox.scale(pMonitor->scale).translate(pos.value());
texbox.round(); texbox.round();
CRegion damage{0, 0, INT16_MAX, INT16_MAX}; CRegion damage{0, 0, INT16_MAX, INT16_MAX};
g_pHyprOpenGL->renderTextureInternalWithDamage(images[x + y * SIDE_LENGTH].fb.getTexture(), &texbox, 1.0, damage, 0, false, false, false, false, nullptr, 0); g_pHyprOpenGL->renderTextureInternalWithDamage(images[x + y * SIDE_LENGTH].fb.getTexture(), &texbox, 1.0, damage);
} }
} }
} }