Skip to content
Snippets Groups Projects
Commit 2c5c6a1f authored by Ricardo Vieira's avatar Ricardo Vieira
Browse files

wayland: Add support for resizing windows

parent 08dccc39
Branches
No related tags found
No related merge requests found
......@@ -45,6 +45,11 @@ static void handleConfigure(void* data,
int32_t width,
int32_t height)
{
_GLFWwindow* window = data;
_glfwInputFramebufferSize(window, width, height);
_glfwInputWindowSize(window, width, height);
_glfwPlatformSetWindowSize(window, width, height);
_glfwInputWindowDamage(window);
}
static void handlePopupDone(void* data,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment