sdlSetWindowResizable function

bool sdlSetWindowResizable(
  1. Pointer<SdlWindow> window,
  2. 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 sdlSetWindowResizable(Pointer<SdlWindow> window, bool resizable) {
  final sdlSetWindowResizableLookupFunction = libSdl3.lookupFunction<
      Uint8 Function(Pointer<SdlWindow> window, Uint8 resizable),
      int Function(
          Pointer<SdlWindow> window, int resizable)>('SDL_SetWindowResizable');
  return sdlSetWindowResizableLookupFunction(window, resizable ? 1 : 0) == 1;
}