GLFW_NOT_INITIALIZED

GLFW has not been initialized.

This occurs if a GLFW function was called that must not be called unless the library is initialized.

@analysis Application programmer error. Initialize GLFW before calling any function that requires initialization.

extern (C) @nogc nothrow __gshared
enum GLFW_NOT_INITIALIZED = 0x00010001;

Meta