EGL: Add better error for no stereo

master
Camilla Löwy ago%!(EXTRA string=3 years)
parent e057666642
commit 93e93135f2
  1. 6
      src/egl_context.c

@ -107,6 +107,12 @@ static GLFWbool chooseEGLConfig(const _GLFWctxconfig* ctxconfig,
else
apiBit = EGL_OPENGL_BIT;
if (desired->stereo)
{
_glfwInputError(GLFW_FORMAT_UNAVAILABLE, "EGL: Stereo rendering not supported");
return GLFW_FALSE;
}
eglGetConfigs(_glfw.egl.display, NULL, 0, &nativeCount);
if (!nativeCount)
{

Loading…
Cancel
Save