GLFWwindowsizefun

The function pointer type for window size callbacks.

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

void callback_name(GLFWwindow* window, int width, int height)
extern (C) @nogc nothrow __gshared
alias GLFWwindowsizefun = void function(GLFWwindow*, int, int)

Meta

Since

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

Ingroup: window