sdlShowWindow function

void sdlShowWindow(
  1. Pointer<SdlWindow> window
)

Show a window.

\param window the window to show

\since This function is available since SDL 2.0.0.

\sa SDL_HideWindow \sa SDL_RaiseWindow

extern DECLSPEC void SDLCALL SDL_ShowWindow(SDL_Window * window)

Implementation

void sdlShowWindow(Pointer<SdlWindow> window) {
  final sdlShowWindowLookupFunction = libSdl2.lookupFunction<
      Void Function(Pointer<SdlWindow> window),
      void Function(Pointer<SdlWindow> window)>('SDL_ShowWindow');
  return sdlShowWindowLookupFunction(window);
}