class Espresso::NotInitializedError
- Espresso::NotInitializedError
- Espresso::GLFWError
- Exception
- Reference
- Object
Overview
Error indicating that GLFW has not been initialized.
Initialize GLFW before calling any function that requires initialization. This can be done with:
Espresso.init
# Code that uses GLFW here.
Espresso.terminate
or:
Espresso.run do
# Code that uses GLFW here.
end
Defined in:
espresso/errors/not_initialized_error.crInstance Method Summary
-
#code : LibGLFW::ErrorCode
Underlying value that represents the error type.