tomato/tools
Green Sky 04b3382029 Squashed 'external/stb/stb/' changes from c39c7023eb..f4a71b1337
f4a71b1337 README.md: tweak credits
a8a25e17b5 update readme version numbers
0bc88af4de stb_image: optimizations
0ca75da4ec stb_image_resize2: remove whitespace
9d924f8a47 stb_image_resize: 2.04
4da08a1dbd stb_image: create_png_image_raw restructuring
c6d7c32e5d stb_image: Two warning fixes
07268cbf36 stb_image: New Paeth filter
ed64333410 tests: test_png_regress
45eb4ac158 global: very basic .gitignore for object files
e5f0e18d0f stb_image: Small PNG filter simplification
d373674115 stb_image: Fix zlib decoder end-of-stream handling
03f50e343d security notice
1d878bd2a3 security notice
beebb24b94 README.md: fix reference to stb_image_resize2.h
e81f294b16 stb_image_resize: switch GNU/clang from "asm" to "__asm__" for -c99 compatibility
c4bbb6e75f stb_image_resize2.h 2.00
REVERT: c39c7023eb stb_image: create_png_image_raw restructuring
REVERT: 8c3aa05487 stb_image: Two warning fixes
REVERT: 3aa1744a29 stb_image: New Paeth filter
REVERT: 2f3b7e47fa tests: test_png_regress
REVERT: d647af9ad2 global: very basic .gitignore for object files
REVERT: 5a44133dc5 stb_image: Small PNG filter simplification
REVERT: 9f1776a36d stb_image: Fix zlib decoder end-of-stream handling

git-subtree-dir: external/stb/stb
git-subtree-split: f4a71b13373436a2866c5d68f8f80ac6f0bc1ffe
2024-01-27 13:03:42 +01:00
..
unicode Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
build_matrix.c Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
easy_font_maker.c Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
make_readme.c Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
make_readme.dsp Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
mr.bat Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
README.footer.md Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
README.header.md Squashed 'external/stb/stb/' changes from c39c7023eb..f4a71b1337 2024-01-27 13:03:42 +01:00
README.list Squashed 'external/stb/stb/' changes from c39c7023eb..f4a71b1337 2024-01-27 13:03:42 +01:00
trailing_whitespace.c Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00
unicode.c Squashed 'external/stb/stb/' content from commit c39c7023e 2023-08-01 20:11:22 +02:00

stb_vorbis.c                | audio            | decode ogg vorbis files from file/memory to float/16-bit signed output
stb_hexwave.h               | audio            | audio waveform synthesizer
stb_image.h                 | graphics         | image loading/decoding from file/memory: JPG, PNG, TGA, BMP, PSD, GIF, HDR, PIC
stb_truetype.h              | graphics         | parse, decode, and rasterize characters from truetype fonts
stb_image_write.h           | graphics         | image writing to disk: PNG, TGA, BMP
stb_image_resize2.h         | graphics         | resize images larger/smaller with good quality
stb_rect_pack.h             | graphics         | simple 2D rectangle packer with decent quality
stb_perlin.h                | graphics         | perlin's revised simplex noise w/ different seeds
stb_ds.h                    | utility          | typesafe dynamic array and hash tables for C, will compile in C++
stb_sprintf.h               | utility          | fast sprintf, snprintf for C/C++
stb_textedit.h              | user interface   | guts of a text editor for games etc implementing them from scratch
stb_voxel_render.h          | 3D graphics      | Minecraft-esque voxel rendering "engine" with many more features
stb_dxt.h                   | 3D graphics      | Fabian "ryg" Giesen's real-time DXT compressor
stb_easy_font.h             | 3D graphics      | quick-and-dirty easy-to-deploy bitmap font for printing frame rate, etc
stb_tilemap_editor.h        | game dev         | embeddable tilemap editor
stb_herringbone_wang_tile.h | game dev         | herringbone Wang tile map generator
stb_c_lexer.h               | parsing          | simplify writing parsers for C-like languages
stb_divide.h                | math             | more useful 32-bit modulus e.g. "euclidean divide"
stb_connected_components.h  | misc             | incrementally compute reachability on grids
stb_leakcheck.h             | misc             | quick-and-dirty malloc/free leak-checking
stb_include.h               | misc             | implement recursive #include support, particularly for GLSL