glfwGetWindowSize¶
Retrieves the size of the content area of the specified window.
This function retrieves the size, in screen coordinates, of the content area
of the specified window. If you wish to retrieve the size of the
framebuffer of the window in pixels, see
glfwGetFramebufferSize.
Any or all of the size arguments may be NULL. If an error occurs, all
non-NULL size arguments will be set to zero.
- arguments
 - 
\GLFWwindow$windowThe window whose size to retrieve.int$widthWhere to store the width, in screen coordinates, of the content area, orNULL.int$heightWhere to store the height, in screen coordinates, of the content area, orNULL.
 - returns
 - 
void