Commit 14e47232 authored by hybrid's avatar hybrid

Add another FBO failure code.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2802 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 9c672f8c
...@@ -807,6 +807,12 @@ bool checkFBOStatus(COpenGLDriver* Driver) ...@@ -807,6 +807,12 @@ bool checkFBOStatus(COpenGLDriver* Driver)
os::Printer::log("FBO missing an image attachment", ELL_ERROR); os::Printer::log("FBO missing an image attachment", ELL_ERROR);
break; break;
#ifdef GL_EXT_framebuffer_multisample
case GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT:
os::Printer::log("FBO wrong multisample setup", ELL_ERROR);
break;
#endif
case GL_FRAMEBUFFER_UNSUPPORTED_EXT: case GL_FRAMEBUFFER_UNSUPPORTED_EXT:
os::Printer::log("FBO format unsupported", ELL_ERROR); os::Printer::log("FBO format unsupported", ELL_ERROR);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment