GLFWwindowrefreshfun

The function pointer type for window content refresh callbacks.

This is the function pointer type for window content refresh callbacks. A window content refresh callback function has the following signature:

void function_name(GLFWwindow* window);
extern (C) @nogc nothrow __gshared
alias GLFWwindowrefreshfun = void function(GLFWwindow*)

Meta

Since

Added in version 2.5. @glfw3 Added window handle parameter.

Ingroup: window