SDL_SetHint(SDL_HINT_RENDER_DRIVER, "metal"); SDL_CreateRenderer(sdlRenderer, NULL); instead? I think if the hint works this way it is pretty much useless. on Oct 6, 2024 slouken Collaborator Because you can do this: renderer=SDL_CreateRenderer("gpu");if(!renderer) {renderer=SDL_Crea...
I just sawSDL_HINT_RENDER_DRIVERdoes not include the value "gpu" in its documentation: /*** A variable specifying which render driver to use.** If the application doesn't pick a specific renderer to use, this variable* specifies the name of the preferred renderer. If the preferred rendere...