setResizable method

bool setResizable(
  1. bool resizable
)

Set the user-resizable state of a window.

This will add or remove the window's SDL_WINDOW_RESIZABLE flag and allow/disallow user resizing of the window. This is a no-op if the window's resizable state already matches the requested state.

You can't change the resizable state of a fullscreen window.

\param window the window of which to change the resizable state. \param resizable true to allow resizing, false to disallow. \returns true on success or false on failure; call SDL_GetError() for more information.

\threadsafety This function should only be called on the main thread.

\since This function is available since SDL 3.1.3.

\sa SDL_GetWindowFlags

extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowResizable(SDL_Window *window, bool resizable)

Implementation

bool setResizable(bool resizable) {
  return sdlSetWindowResizable(this, resizable);
}