Nathan Glover

Results 2 issues of Nathan Glover

#### Sample Code: ``` #include #include void errorCallback(int, const char*); int main() { glfwSetErrorCallback(errorCallback); glfwInit(); GLFWwindow* win = glfwCreateWindow(400, 400, "Window", nullptr, nullptr); glfwHideWindow(win); while(!glfwWindowShouldClose(win)) { glfwPollEvents(); } return 0;...

bug
macOS
verified

There are a few functions that don't return what the GLFW documentation says they should: - [GetMonitors](http://www.glfw.org/docs/latest/group__monitor.html#ga3fba51c8bd36491d4712aa5bd074a537) should return GLFWmonitor[], not GLFWmonitor - [GetVideoModes](http://www.glfw.org/docs/latest/group__monitor.html#ga820b0ce9a5237d645ea7cbb4bd383458) should return GLFWvidmode[], not GLFWvidmode There...