Make incomplete framebuffers warn instead of panic

This commit is contained in:
wheremyfoodat 2023-10-31 23:51:34 +02:00 committed by GitHub
parent f2b7f14dcd
commit 5a2e554a6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.