SDL2 API: 01.Basics - 01 - Initialization & Shutdown Flashcards
1
Q
SDL_Init
A
Initialize the SDL library. This must be called before using most other SDL functions.
2
Q
SDL_InitSubSystem
A
Initialize specific SDL subsystems.
3
Q
SDL_Quit
A
Clean up all initialized subsystems. You should call it upon all exit conditions.
4
Q
SDL_QuitSubSystem
A
Shut down specific SDL subsystems.
5
Q
SDL_SetMainReady
A
Circumvent failure of SDL_Init() when not using SDL_main() as an entry point.
6
Q
SDL_WasInit
A
Get a mask of the specified subsystems which have previously been initialized.
7
Q
SDL_WinRTRunApp
A
Initialize and launch an SDL/WinRT application.