Sean Barrett
6e7e5c5787
Merge branch 'fix-unaligned' of https://github.com/stefano-zanotti-88/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
694b61fcb1
stb_image: remove non-ASCII character from credits
ago%!(EXTRA string=6 years)
Sean Barrett
0aa5984b6a
Merge branch 'remove-assert' of https://github.com/rombankzero/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
f9d9a419a9
Merge branch 'optimize_stbi__ldr_to_hdr' of https://github.com/technik/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
db691f0c69
Merge branch 'fix_1bit_bmp' of https://github.com/plzombie/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
5428c40870
Merge branch 'textedit-undo_char_position_type' of https://github.com/ocornut/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
9bb4bc1db4
Merge branch 'patch-1' of https://github.com/sherjilozair/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
79a7719c37
stb_image: fix d1252e1bb9
for building in C
ago%!(EXTRA string=6 years)
Sean Barrett
7056eae4ae
Merge branch 'issue-609' of https://github.com/dp304/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
d1252e1bb9
Merge branch 'master' of https://github.com/ab-cpp/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
476c1f89a2
stb_image_write: fix the previous fix (incorrectly labelled as stb_image)
ago%!(EXTRA string=6 years)
Sean Barrett
aa223d9693
Merge branch 'patch-1' of https://github.com/mastensg/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
ba5fc494b4
Merge branch 'master' of https://github.com/WARP-LAB/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
e5d4d6fcce
stb_image; optimize row computation in PR
ago%!(EXTRA string=6 years)
Sean Barrett
b2bde485a2
Merge branch 'stbiw-fix-jpeg-flipping' of https://github.com/DanielGibson/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
09998eb596
Merge branch 'truetype-comment' of https://github.com/ocornut/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
ff1eb8b8d4
Merge branch 'fix_stbi_write_hdr_core' of https://github.com/poppolopoppo/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
94f93a86e7
Merge branch 'truetype-warnings' of https://github.com/ocornut/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
f82dbd638c
windows unicode: don't malloc buffers, add explicit STBI_WINDOWS_UTF8 #define
ago%!(EXTRA string=6 years)
Sean Barrett
ae773aa438
Merge branch 'unicode-file-support' of https://github.com/jrsmith17/stb into temp
ago%!(EXTRA string=6 years)
Sean Barrett
841c8b0f55
Merge branch 'rectpack-warnings' of https://github.com/ocornut/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
3005bcfe87
Merge branch 'misc-typos' of https://github.com/luzpaz/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
cc53512cb9
added integer seed to noise function, use it in multi-octave noises
ago%!(EXTRA string=6 years)
Sean Barrett
ca980dd2dc
Merge branch 'perlin' of https://github.com/Auburns/stb into working
ago%!(EXTRA string=6 years)
Sean Barrett
a28a6b126b
tests: 64-bit fixes, fix typo in image tests
ago%!(EXTRA string=6 years)
Sean Barrett
27460c23a6
stb_truetype: allow getting font metrics without explicitly opening file
ago%!(EXTRA string=6 years)
Sean Barrett
9f1ef73e96
stb_sprintf: minor reformatting
ago%!(EXTRA string=6 years)
Sean Barrett
061422f580
fix non-fastpath BMP pixels with bit 31 set when asserts are on
ago%!(EXTRA string=6 years)
Sean Barrett
d85e594654
various fixes:
...
add stb_intcmprev
add stb_uidict
fixes to stb__dirtree_scandir
change rand functions from unsigned long to unsigned int so they're 32-bit on Linux as well
ago%!(EXTRA string=6 years)
Andrew Beatty
eee50c079d
Update to STB conventions
ago%!(EXTRA string=6 years)
NuklearBomb
d156642036
Silence warning 'tc' may be used uninitialized in this function
ago%!(EXTRA string=6 years)
Andrew Beatty
ccc4b3716a
fix compiler warnings and const error
ago%!(EXTRA string=6 years)
root
eccee04e5a
stb_sprintf: fix integer size for %ld
ago%!(EXTRA string=7 years)
Clownacy
610a976b83
Removed redundant check
ago%!(EXTRA string=7 years)
Clownacy
3e6370720e
Fixed STB_LEAKCHECK_SHOWALL
...
5a5cf7f9ba
derped
ago%!(EXTRA string=7 years)
Clownacy
359bb10d3c
Try to clean up stblkck_internal_print a little
...
No need to pass all those parameters. Also long longs aren't 8 digits
long. I don't know how to find out the length of a size_t at
compile-time in a way I can use with a format specifier.
ago%!(EXTRA string=7 years)
Clownacy
79dc50bb79
...Actually, I don't think these are meant to be here
...
Looking at 501812f307
, the entire point
was to *replace* these lines. That explains why they lacked braces
earlier.
ago%!(EXTRA string=7 years)
Clownacy
f7d9426f8e
Add a way to use %zd on MinGW(-w64)
...
This is suggested here:
https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/
Compared to using __USE_MINGW_ANSI_STDIO, this prevents those annoying
warning about "unsupported" format specifiers.
ago%!(EXTRA string=7 years)
Clownacy
248604ffbc
Shut up GCC -pedantic warnings
ago%!(EXTRA string=7 years)
Clownacy
80b89cf6c8
Fixes for stb_leakcheck.h
...
I ran into a couple of problems while trying to use this with my
program:
My compiler (MinGW-w64 GCC 8.2.0) complained about not recognising %lld
format specifiers.
The compiler also warned about non-guarding 'if's. I ignored it at
first, but then I noticed my program crashed when it ran
stb_leakcheck_dumpmem. Making the 'if's guard fixed that.
After that, the lib worked until I changed how it was included: instead
of tacking a debug-only #include at the start of every file, I switched
to using GCC's '-include' option to force-include it in every file. But
doing that gave me errors about size_t not being defined. And after
fixing that, I instead got errors about the #defines messing with
stdlib.h. So to fix those I made the declaration-only part of the header
include stdlib.h.
ago%!(EXTRA string=7 years)
jarnoh
60a5755478
use simple memcpy if png filter=0
ago%!(EXTRA string=7 years)
jarnoh
7a02732eb3
allow STBIW_CRC32 override default crc32
ago%!(EXTRA string=7 years)
Stefano Zanotti
05b45da629
stb_sprintf: fix unaligned access
...
Fix an unaligned 32-bit access even if STB_SPRINTF_NOUNALIGNED was defined.
ago%!(EXTRA string=7 years)
rombankzero
f65ed67e89
stb_rect_pack: Remove always-true assert
ago%!(EXTRA string=7 years)
Mikhail Morozov
5d90a8375a
stb_image: fix 1-bit bmp
ago%!(EXTRA string=7 years)
Carmelo Fernandez Aguera
e64d4f89eb
Added myself to the list of contributors.
ago%!(EXTRA string=7 years)
Carmelo Fernandez Aguera
f1f077b272
Break a for loop into two parts and get an if out of the loop.
ago%!(EXTRA string=7 years)
Omar
94e418bb7b
stb_textedit: fixed undo/redo after pasting large amount of text (over 32 kb). Redo will still fail when undo buffers are exhausted, but text won't be corrupted. Fix #620 .
ago%!(EXTRA string=7 years)
Sherjil Ozair
05a8de3b86
Update stb_tilemap_editor.h
ago%!(EXTRA string=7 years)
Sherjil Ozair
a20ccd4a7d
Update stb_tilemap_editor.h
ago%!(EXTRA string=7 years)