GLFW_VERSION_UNAVAILABLE

The requested OpenGL or OpenGL ES version is not available.

The requested OpenGL or OpenGL ES version (including any requested context or framebuffer hints) is not available on this machine.

@analysis The machine does not support your requirements. If your application is sufficiently flexible, downgrade your requirements and try again. Otherwise, inform the user that their machine does not match your requirements.

@par Future invalid OpenGL and OpenGL ES versions, for example OpenGL 4.8 if 5.0 comes out before the 4.x series gets that far, also fail with this error and not @ref GLFW_INVALID_VALUE, because GLFW cannot know what future versions will exist.

extern (C) @nogc nothrow __gshared
enum GLFW_VERSION_UNAVAILABLE = 0x00010007;

Meta