I'd like to report a (looks like) bug on GLES branch.
It seems like you are missing a line for D24S8 color format case in COGLESDriver.c line 3155
Code: Select all
os::Printer::log("ECF_D32 color format is not supported", ELL_ERROR);
break;
#ifdef GL_OES_packed_depth_stencil
if (queryOpenGLFeature(COGLES1ExtensionHandler::IRR_OES_packed_depth_stencil))
{
internalFormat = GL_DEPTH24_STENCIL8_OES;
pixelFormat = GL_DEPTH_STENCIL_OES;
pixelType = GL_UNSIGNED_INT_24_8_OES;
}
else
#endif
os::Printer::log("ECF_D24S8 color format is not supported", ELL_ERROR);
break;
case ECF_R8:
Code: Select all
os::Printer::log("ECF_D32 color format is not supported", ELL_ERROR);
break;
case ECF_D24S8:
#ifdef GL_OES_packed_depth_stencil
if (queryOpenGLFeature(COGLES1ExtensionHandler::IRR_OES_packed_depth_stencil))
{
internalFormat = GL_DEPTH24_STENCIL8_OES;
pixelFormat = GL_DEPTH_STENCIL_OES;
pixelType = GL_UNSIGNED_INT_24_8_OES;
}
else
#endif
os::Printer::log("ECF_D24S8 color format is not supported", ELL_ERROR);
break;
case ECF_R8:
