mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 20:05:58 +01:00
renderer: render back layer for workspace-less passes
This commit is contained in:
parent
3981f85e94
commit
64964c4e3b
1 changed files with 7 additions and 0 deletions
|
@ -762,6 +762,13 @@ void CHyprRenderer::renderAllClientsForWorkspace(CMonitor* pMonitor, PHLWORKSPAC
|
||||||
|
|
||||||
if (!pWorkspace) {
|
if (!pWorkspace) {
|
||||||
// allow rendering without a workspace. In this case, just render layers.
|
// allow rendering without a workspace. In this case, just render layers.
|
||||||
|
g_pHyprOpenGL->blend(false);
|
||||||
|
if (!canSkipBackBufferClear(pMonitor)) {
|
||||||
|
if (*PRENDERTEX /* inverted cfg flag */)
|
||||||
|
g_pHyprOpenGL->clear(CColor(*PBACKGROUNDCOLOR));
|
||||||
|
else
|
||||||
|
g_pHyprOpenGL->clearWithTex(); // will apply the hypr "wallpaper"
|
||||||
|
}
|
||||||
g_pHyprOpenGL->blend(true);
|
g_pHyprOpenGL->blend(true);
|
||||||
|
|
||||||
for (auto& ls : pMonitor->m_aLayerSurfaceLayers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND]) {
|
for (auto& ls : pMonitor->m_aLayerSurfaceLayers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND]) {
|
||||||
|
|
Loading…
Reference in a new issue