From ad3f6886484e9adbab532de125e69a70c54fa13e Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sat, 25 Nov 2023 19:40:15 +0000 Subject: [PATCH] opengl: check for introspection on special_blur --- src/render/OpenGL.cpp | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index f2028aaf..f2cec5df 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -118,9 +118,10 @@ GLuint CHyprOpenGLImpl::compileShader(const GLuint& type, std::string src, bool bool CHyprOpenGLImpl::passRequiresIntrospection(CMonitor* pMonitor) { // passes requiring introspection are the ones that need to render blur. - static auto* const PBLUR = &g_pConfigManager->getConfigValuePtr("decoration:blur:enabled")->intValue; - static auto* const PXRAY = &g_pConfigManager->getConfigValuePtr("decoration:blur:xray")->intValue; - static auto* const POPTIM = &g_pConfigManager->getConfigValuePtr("decoration:blur:new_optimizations")->intValue; + static auto* const PBLUR = &g_pConfigManager->getConfigValuePtr("decoration:blur:enabled")->intValue; + static auto* const PXRAY = &g_pConfigManager->getConfigValuePtr("decoration:blur:xray")->intValue; + static auto* const POPTIM = &g_pConfigManager->getConfigValuePtr("decoration:blur:new_optimizations")->intValue; + static auto* const PBLURSPECIAL = &g_pConfigManager->getConfigValuePtr("decoration:blur:special")->intValue; if (*PBLUR == 0) return false; @@ -143,6 +144,18 @@ bool CHyprOpenGLImpl::passRequiresIntrospection(CMonitor* pMonitor) { return true; } + if (*PBLURSPECIAL) { + for (auto& ws : g_pCompositor->m_vWorkspaces) { + if (!ws->m_bIsSpecialWorkspace || ws->m_iMonitorID != pMonitor->ID) + continue; + + if (ws->m_fAlpha.fl() == 0) + continue; + + return true; + } + } + if (*PXRAY) return false;