Added GLFW_VISIBLE to glfwWindowParam.

master
Camilla Berglund ago%!(EXTRA string=13 years)
parent 0e63488b40
commit f6a1bbf782
  1. 2
      src/window.c

@ -723,6 +723,8 @@ GLFWAPI int glfwGetWindowParam(GLFWwindow handle, int param)
return window->refreshRate;
case GLFW_RESIZABLE:
return window->resizable;
case GLFW_VISIBLE:
return window->visible;
case GLFW_OPENGL_VERSION_MAJOR:
return window->glMajor;
case GLFW_OPENGL_VERSION_MINOR:

Loading…
Cancel
Save