Skip to content

Commit

Permalink
Prioritize SDL_gpu!
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Mar 27, 2024
1 parent 10f7bc6 commit 8ac9743
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/FNA3D.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
/* Drivers */

static const FNA3D_Driver *drivers[] = {
#if FNA3D_DRIVER_SDL
&SDLGPUDriver,
#endif
#if FNA3D_DRIVER_D3D11
&D3D11Driver,
#endif
Expand All @@ -49,9 +52,6 @@ static const FNA3D_Driver *drivers[] = {
#if FNA3D_DRIVER_VULKAN /* TODO: Bump this to the top when Vulkan is done! */
&VulkanDriver,
#endif
#if FNA3D_DRIVER_SDL
&SDLGPUDriver,
#endif
#if FNA3D_DRIVER_GNMX
&GNMXDriver,
#endif
Expand Down

0 comments on commit 8ac9743

Please sign in to comment.