Compare commits

...

2 commits

Author SHA1 Message Date
Jan Haller a61d471451 Link legacy_stdio_definitions.lib on MSVC -- fixes linker errors for sprintf() & Co. 2020-10-31 11:59:06 +01:00
Jan Haller 53ee8d39aa Update stb_image (2.16 -> 2.26) and stb_image_write (1.07 -> 1.15)
Closes  - race condition on stbi_failure_reason()

This does not only avoid the race condition on the failure string itself, but also makes failure state thread-local, meaning that each string will be correctly associated with the last image it failed to load.
2020-10-22 00:11:50 +02:00
3 changed files with 9458 additions and 8645 deletions
extlibs/headers/stb_image
src/SFML/Graphics

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -117,6 +117,12 @@ elseif(SFML_OS_IOS)
target_link_libraries(sfml-graphics PRIVATE z bz2)
endif()
# on newer MSVC versions, inline versions of some C functions are used; for compatibility link this library
# see https://docs.microsoft.com/en-us/cpp/porting/overview-of-potential-upgrade-issues-visual-cpp?view=msvc-160#libraries
if(SFML_COMPILER_MSVC)
target_link_libraries(sfml-graphics PRIVATE legacy_stdio_definitions.lib)
endif()
sfml_find_package(Freetype INCLUDE "FREETYPE_INCLUDE_DIRS" LINK "FREETYPE_LIBRARY")
target_link_libraries(sfml-graphics PRIVATE Freetype)