dep/imgui: Use stb_sprintf

This commit is contained in:
Stenzek 2024-08-26 00:01:18 +10:00
parent 06b2f29bb9
commit 1003192d7e
No known key found for this signature in database
3 changed files with 1911 additions and 1 deletions

View file

@ -76,7 +76,7 @@
//---- Use stb_sprintf.h for a faster implementation of vsnprintf instead of the one from libc (unless IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS is defined)
// Compatibility checks of arguments and formats done by clang and GCC will be disabled in order to support the extra formats provided by stb_sprintf.h.
//#define IMGUI_USE_STB_SPRINTF
#define IMGUI_USE_STB_SPRINTF
//---- Use FreeType to build and rasterize the font atlas (instead of stb_truetype which is embedded by default in Dear ImGui)
// Requires FreeType headers to be available in the include path. Requires program to be compiled with 'misc/freetype/imgui_freetype.cpp' (in this repository) + the FreeType library (not provided).

View file

@ -2016,6 +2016,7 @@ const char* ImStrSkipBlank(const char* str)
#ifdef IMGUI_USE_STB_SPRINTF
#ifndef IMGUI_DISABLE_STB_SPRINTF_IMPLEMENTATION
#define STB_SPRINTF_IMPLEMENTATION
#define STB_SPRINTF_STATIC
#endif
#ifdef IMGUI_STB_SPRINTF_FILENAME
#include IMGUI_STB_SPRINTF_FILENAME

1909
dep/imgui/src/stb_sprintf.h Normal file

File diff suppressed because it is too large Load diff