sdlGlUnloadLibrary function

void sdlGlUnloadLibrary()

Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary().

\since This function is available since SDL 2.0.0.

\sa SDL_GL_LoadLibrary

extern DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void)

Implementation

void sdlGlUnloadLibrary() {
  final sdlGlUnloadLibraryLookupFunction = libSdl2
      .lookupFunction<Void Function(), void Function()>('SDL_GL_UnloadLibrary');
  return sdlGlUnloadLibraryLookupFunction();
}