wayland: Add support for resizing windows

This commit is contained in:
Ricardo Vieira 2014-07-10 22:07:30 +01:00
parent 08dccc390d
commit 2c5c6a1ff5
1 changed files with 5 additions and 0 deletions

View File

@ -45,6 +45,11 @@ static void handleConfigure(void* data,
int32_t width, int32_t width,
int32_t height) 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, static void handlePopupDone(void* data,