Can I ask about Epoxy and GL3 Renderer?
I need CEGUI OpenGLES2 Renderer, so I build Epoxy library, use Cmake, and build CEGUI, too.
But I think, CEGUI doesn't use GLES2 library;like libEGL, libGLES2.
Please watch this code.
void OpenGLInfo::initTypeAndVer()
{
#if defined CEGUI_USE_EPOXY
d_type = epoxy_is_desktop_gl() ? TYPE_DESKTOP : TYPE_ES;
This is GL.cpp, CEGUI::OpenInfo::initTypeAndVer function. If I use GLES2, d_type should be TYPE_ES right? But, My case, d_type is TYPE_DESKTOP.
So I check everything, I use glfw3, and Epoxy. Epoxy use Powervr's EGL and GLES2.
Maybe Epoxy or GLFW3's problem..but I cannot solve.
Have you any idea? I'll wait reply.
