Externals: Bump SDL submodule version to release-3.2.26

This commit is contained in:
Jordan Woyak 2025-10-30 21:49:09 -05:00
parent c12d3a6d22
commit fc7241dec3
3 changed files with 12 additions and 3 deletions

View File

@ -7,6 +7,16 @@ set(SDL_DISABLE_INSTALL_DOCS ON)
set(SDL_INSTALL_TESTS OFF)
set(SDL_UNIX_CONSOLE_BUILD ON)
set(SDL_AUDIO OFF)
if (NOT APPLE)
# Working around cocoa/SDL_tray.m linker errors.
set(SDL_VIDEO OFF)
endif()
set(SDL_GPU OFF)
set(SDL_RENDER OFF)
set(SDL_CAMERA OFF)
set(SDL_DIALOG OFF)
add_subdirectory(SDL)
if (TARGET SDL3)

2
Externals/SDL/SDL vendored

@ -1 +1 @@
Subproject commit a8589a84226a6202831a3d49ff4edda4acab9acd
Subproject commit badbf8da4ee72b3ef599c721ffc9899e8d7c8d90

View File

@ -18,7 +18,7 @@
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>SDL\src;SDL\include;SDL\include\build_config;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>HAVE_LIBC=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>SDL_AUDIO_DISABLED;SDL_VIDEO_DISABLED;SDL_GPU_DISABLED;SDL_RENDER_DISABLED;SDL_CAMERA_DISABLED;SDL_DIALOG_DISABLED;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
@ -399,7 +399,6 @@
<ClCompile Include="SDL\src\render\opengl\SDL_shaders_gl.c" />
<ClCompile Include="SDL\src\render\opengles2\SDL_render_gles2.c" />
<ClCompile Include="SDL\src\render\opengles2\SDL_shaders_gles2.c" />
<ClCompile Include="SDL\src\render\SDL_d3dmath.c" />
<ClCompile Include="SDL\src\render\SDL_render.c" />
<ClCompile Include="SDL\src\render\SDL_render_unsupported.c" />
<ClCompile Include="SDL\src\render\SDL_yuv_sw.c" />