From b6b31113ce84419c69ed575c22194e4023d2952a Mon Sep 17 00:00:00 2001 From: Constantin Piber <59023762+cpiber@users.noreply.github.com> Date: Sun, 5 Jan 2025 23:13:33 +0100 Subject: [PATCH] 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 --- hyprexpo/overview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyprexpo/overview.cpp b/hyprexpo/overview.cpp index d37df2c..bfd7d54 100644 --- a/hyprexpo/overview.cpp +++ b/hyprexpo/overview.cpp @@ -406,7 +406,7 @@ void COverview::fullRender() { texbox.scale(pMonitor->scale).translate(pos.value()); texbox.round(); 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); } } }