glfwGetVersion¶
Retrieves the version of the GLFW library.
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.
- arguments
-
int$majorWhere to store the major version number, orNULL.int$minorWhere to store the minor version number, orNULL.int$revWhere to store the revision number, orNULL.
- returns
-
void