mirror of
https://github.com/gwm17/glfw.git
synced 2024-11-23 10:48:51 -05:00
wayland: Add support for resizing windows
This commit is contained in:
parent
08dccc390d
commit
2c5c6a1ff5
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user