From 5a2e554a6ca5c1de95ff57150509813fb2e8c237 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 31 Oct 2023 23:51:34 +0200 Subject: [PATCH] Make incomplete framebuffers warn instead of panic --- include/renderer_gl/surfaces.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/renderer_gl/surfaces.hpp b/include/renderer_gl/surfaces.hpp index 1c2976d6..15304a7a 100644 --- a/include/renderer_gl/surfaces.hpp +++ b/include/renderer_gl/surfaces.hpp @@ -48,7 +48,7 @@ struct ColourBuffer { fbo.bind(OpenGL::DrawAndReadFramebuffer); if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { - Helpers::panic("Incomplete framebuffer"); + Helpers::warn("ColourBuffer: Incomplete framebuffer"); } // TODO: This should not clear the framebuffer contents. It should load them from VRAM.