Skip to content

Commit 8ac9743

Browse files
committed
Prioritize SDL_gpu!
1 parent 10f7bc6 commit 8ac9743

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FNA3D.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
/* Drivers */
4141

4242
static const FNA3D_Driver *drivers[] = {
43+
#if FNA3D_DRIVER_SDL
44+
&SDLGPUDriver,
45+
#endif
4346
#if FNA3D_DRIVER_D3D11
4447
&D3D11Driver,
4548
#endif
@@ -49,9 +52,6 @@ static const FNA3D_Driver *drivers[] = {
4952
#if FNA3D_DRIVER_VULKAN /* TODO: Bump this to the top when Vulkan is done! */
5053
&VulkanDriver,
5154
#endif
52-
#if FNA3D_DRIVER_SDL
53-
&SDLGPUDriver,
54-
#endif
5555
#if FNA3D_DRIVER_GNMX
5656
&GNMXDriver,
5757
#endif

0 commit comments

Comments
 (0)