From f67165c2bb2af3060ecae7d20d6f731173485ad0 Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Mon, 28 Oct 2019 09:30:02 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6bee84d..e584b78 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Noteworthy: * image loader: [stb_image.h](stb_image.h) * image writer: [stb_image_write.h](stb_image_write.h) * image resizer: [stb_image_resize.h](stb_image_resize.h) -* font text rasterizer: [stb_textedit.h](stb_textedit.h) +* font text rasterizer: [stb_truetype.h](stb_truetype.h) * typesafe containers: [stb_ds.h](stb_ds.h) Most libraries by stb, except: stb_dxt by Fabian "ryg" Giesen, stb_image_resize From b97d06e0fae0a40fab79a5b6eeedd4d8ba7d3df4 Mon Sep 17 00:00:00 2001 From: arlecchino Date: Tue, 5 Nov 2019 17:39:22 +0100 Subject: [PATCH 2/3] fix: stb_sprintf - gcc defines __powerpc64__ Fix for stb_sprintf https://github.com/nothings/stb/issues/806 fixes #806 --- stb_sprintf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stb_sprintf.h b/stb_sprintf.h index e3a3018..5957fe5 100644 --- a/stb_sprintf.h +++ b/stb_sprintf.h @@ -200,7 +200,7 @@ STBSP__PUBLICDEF void STB_SPRINTF_DECORATE(set_separators)(char comma, char peri #define stbsp__uint16 unsigned short #ifndef stbsp__uintptr -#if defined(__ppc64__) || defined(__aarch64__) || defined(_M_X64) || defined(__x86_64__) || defined(__x86_64) +#if defined(__ppc64__) || defined(__powerpc64__) || defined(__aarch64__) || defined(_M_X64) || defined(__x86_64__) || defined(__x86_64) #define stbsp__uintptr stbsp__uint64 #else #define stbsp__uintptr stbsp__uint32 From 117e1741a22fb0ad9f553b005d5e4c4f1d99734c Mon Sep 17 00:00:00 2001 From: arlecchino Date: Tue, 5 Nov 2019 17:43:20 +0100 Subject: [PATCH 3/3] stb_printf - added contributor --- stb_sprintf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stb_sprintf.h b/stb_sprintf.h index 5957fe5..cd7ceb9 100644 --- a/stb_sprintf.h +++ b/stb_sprintf.h @@ -18,6 +18,7 @@ // Leonard Ritter // Stefano Zanotti // Adam Allison +// Markus Kolb // // LICENSE: //