mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Make incomplete framebuffers warn instead of panic
This commit is contained in:
parent
f2b7f14dcd
commit
5a2e554a6c
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue