Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
url = https://github.com/g-truc/glm.git
[submodule "src/stb"]
path = src/stb
url = https://github.com/nothings/stb.git
url = https://github.com/omichel/stb.git
branch = patch-1
Comment thread
omichel marked this conversation as resolved.
2 changes: 1 addition & 1 deletion src/stb
Submodule stb updated 85 files
+4 −0 .github/CONTRIBUTING.md
+15 −0 .github/ISSUE_TEMPLATE/1-stb_image-doesn-t-load-specific-image-correctly.md
+24 −0 .github/ISSUE_TEMPLATE/2-bug_report.md
+20 −0 .github/ISSUE_TEMPLATE/3-feature_request.md
+5 −0 .github/ISSUE_TEMPLATE/config.yml
+23 −0 .github/workflows/ci-fuzz.yml
+3 −0 .gitignore
+3 −0 .travis.yml
+37 −0 LICENSE
+49 −34 README.md
+2 −0 SECURITY.md
+125 −1,467 deprecated/stb.h
+58 −54 deprecated/stb_image_resize.h
+7 −6 deprecated/stretch_test.c
+27 −26 deprecated/stretchy_buffer.h
+6 −5 docs/why_public_domain.md
+78 −103 stb_c_lexer.h
+32 −32 stb_connected_components.h
+52 −40 stb_divide.h
+313 −122 stb_ds.h
+234 −243 stb_dxt.h
+33 −31 stb_easy_font.h
+6 −6 stb_herringbone_wang_tile.h
+680 −0 stb_hexwave.h
+816 −380 stb_image.h
+10,651 −0 stb_image_resize2.h
+224 −0 stb_image_resize_test/dotimings.c
+2,738 −0 stb_image_resize_test/old_image_resize.h
+56 −0 stb_image_resize_test/oldir.c
+992 −0 stb_image_resize_test/stbirtest.c
+999 −0 stb_image_resize_test/vf_train.c
+210 −105 stb_image_write.h
+12 −5 stb_include.h
+34 −30 stb_leakcheck.h
+65 −64 stb_perlin.h
+41 −46 stb_rect_pack.h
+114 −68 stb_sprintf.h
+90 −65 stb_textedit.h
+76 −50 stb_tilemap_editor.h
+542 −351 stb_truetype.h
+320 −238 stb_vorbis.c
+51 −50 stb_voxel_render.h
+3 −1 tests/Makefile
+54 −0 tests/fuzz_main.c
+3 −2 tests/image_test.dsp
+29 −0 tests/ossfuzz.sh
+ tests/pbm/basi0g16.pgm
+ tests/pbm/basi2c16.ppm
+ tests/pbm/cdfn2c08.ppm
+ tests/pbm/cdun2c08.ppm
+ tests/pbm/comment.pgm
+ tests/pbm/ctfn0g04.pgm
+ tests/pngsuite/iphone/iphone_basi0g01.png
+ tests/pngsuite/iphone/iphone_basi0g02.png
+ tests/pngsuite/iphone/iphone_basi3p02.png
+ tests/pngsuite/iphone/iphone_bgwn6a08.png
+ tests/pngsuite/iphone/iphone_bgyn6a16.png
+ tests/pngsuite/iphone/iphone_tbyn3p08.png
+ tests/pngsuite/iphone/iphone_z06n2c08.png
+259 −0 tests/pngsuite/ref_results.csv
+9 −4 tests/resample_test.cpp
+1 −1 tests/resize.dsp
+10 −18 tests/stb.dsp
+0 −15 tests/stb.dsw
+74 −0 tests/stb_c_lexer_fuzzer.cpp
+2 −0 tests/stb_cpp.cpp
+8 −0 tests/stb_png.dict
+28 −0 tests/stbi_read_fuzzer.c
+0 −7 tests/stretchy_buffer_test.c
+14 −6 tests/test_c_compilation.c
+50 −1 tests/test_c_lexer.c
+20 −4 tests/test_cpp_compilation.cpp
+5 −1 tests/test_ds.c
+47 −0 tests/test_png_paeth.c
+75 −0 tests/test_png_regress.c
+202 −1 tests/test_sprintf.c
+54 −5 tests/test_truetype.c
+1 −1 tests/test_vorbis.c
+184 −0 tests/truetype_test_win32.c
+22 −8 tools/README.footer.md
+12 −9 tools/README.header.md
+3 −4 tools/README.list
+6 −1 tools/build_matrix.c
+6 −5 tools/make_readme.c
+32 −0 tools/trailing_whitespace.c