Function glfwSetErrorCallback

  • This function sets the error callback, which is called with an error code and a human-readable description each time a GLFW error occurs.

    The error code is set before the callback is called. Calling glfwGetError from the error callback will return the same value as the error code argument.

    The error callback is called on the thread where the error occurred. If you are using GLFW from multiple threads, your error callback needs to be written accordingly.

    Because the description string may have been generated specifically for that error, it is not guaranteed to be valid after the callback has returned. If you wish to use it after the callback returns, you need to make a copy.

    Once set, the error callback remains set even after the library has been terminated.

    Parameters

    • callback: GLFWerrorfun

      The new callback, or null to remove the currently set callback.

    Returns GLFWerrorfun

    The previously set callback, or null if no callback was set.

Generated using TypeDoc