sdlVideoQuit function
        
void
sdlVideoQuit()
        
     
    
Shut down the video subsystem, if initialized with SDL_VideoInit().
This function closes all windows, and restores the original video mode.
\since This function is available since SDL 2.0.0.
\sa SDL_VideoInit
extern DECLSPEC void SDLCALL SDL_VideoQuit(void)
Implementation
void sdlVideoQuit() {
  final sdlVideoQuitLookupFunction =
      libSdl2.lookupFunction<Void Function(), void Function()>('SDL_VideoQuit');
  return sdlVideoQuitLookupFunction();
}