Code: Select all
error: undefined symbol: eglCreatePbufferSurface
Issue comes from this recent commit: https://github.com/OGRECave/ogre/commit ... aed01cc4f3
Added EGLWindow::create function use eglCreatePbufferSurface. Emscripten docs, telling that this function is not implemented: https://emscripten.org/docs/porting/mul ... extensions
Another place where eglCreatePbufferSurface is used in the EGLPBuffer, this class is also new for emscripten build.
Comes from this code
Code: Select all
GLPBuffer* EGLSupport::createPBuffer( PixelComponentType format, size_t width, size_t height )
{
return new EGLPBuffer(this, format, width, height);
}