Function glfwGetVersion

  • This function retrieves the major, minor and revision numbers of the GLFW library. It is intended for when you are using GLFW as a shared library and want to ensure that you are using the minimum required version.

    Any or all of the version arguments may be null.

    Parameters

    • major: number

      Where to store the major version number, or null.

    • minor: number

      Where to store the minor version number, or null.

    • rev: number

      Where to store the revision number, or null.

    Returns void

Generated using TypeDoc