Implement Wayland_SetWindowResizable

This commit is contained in:
Ethan Lee 2021-01-23 15:40:22 -05:00
parent 360e04dd23
commit e787282ba8
3 changed files with 12 additions and 0 deletions

View file

@ -627,6 +627,16 @@ Wayland_SetWindowBordered(_THIS, SDL_Window * window, SDL_bool bordered)
}
}
void
Wayland_SetWindowResizable(_THIS, SDL_Window * window, SDL_bool resizable)
{
/* No-op, this is handled by the xdg-shell/wl_shell callbacks.
* Also note that we do NOT implement SetMaximumSize/SetMinimumSize, as
* those are also no-ops for the same reason, but SDL_video.c does not
* require a driver implementation.
*/
}
void
Wayland_MaximizeWindow(_THIS, SDL_Window * window)
{