From 28fd76c147582f2c8af81e4c18d748b29e0d64e5 Mon Sep 17 00:00:00 2001 From: Matias Date: Wed, 16 Jul 2025 22:04:39 +0200 Subject: [PATCH] fix: do not glClear with red --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 9838f0a..27776db 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,7 +48,7 @@ class CBindOwnFramebufferPassElement final: public IPassElement { m_pFramebuffer->bind(); g_pHyprOpenGL->m_renderData.currentFB = m_pFramebuffer; - GLCALL(glClearColor(1, 0, 0, 0)); + GLCALL(glClearColor(0, 0, 0, 0)); GLCALL(glClear(GL_COLOR_BUFFER_BIT)); }