MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / glfwWindowShouldClose

Function glfwWindowShouldClose

extern/glfw/src/window.c:452–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

450}
451
452GLFWAPI int glfwWindowShouldClose(GLFWwindow* handle)
453{
454 _GLFWwindow* window = (_GLFWwindow*) handle;
455 assert(window != NULL);
456
457 _GLFW_REQUIRE_INIT_OR_RETURN(0);
458 return window->shouldClose;
459}
460
461GLFWAPI void glfwSetWindowShouldClose(GLFWwindow* handle, int value)
462{

Callers 1

mainLoopMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected