Updated raylib dependencies (markdown)

Ray
2021-04-14 20:57:33 +02:00
parent ec56e1f975
commit bdba48e13b

@ -7,7 +7,9 @@ The following table lists the raylib dependencies. Most are [single-header, publ
Library | Version | raylib module | Notes Library | Version | raylib module | Notes
--- | :---: | :---: | --- --- | :---: | :---: | ---
[GLFW3](http://www.glfw.org/) | 3.4-master | [rglfw](https://github.com/raysan5/raylib/blob/master/src/rglfw.c) | Window and input management [GLFW3](http://www.glfw.org/) | 3.4-master | [rglfw](https://github.com/raysan5/raylib/blob/master/src/rglfw.c) | Window and input management
[rgif](https://github.com/raysan5/raylib/blob/master/src/external/rgif.h) | 0.5| [core](https://github.com/raysan5/raylib/blob/master/src/core.c) | GIF recording basic functionality [msf_gif](https://github.com/notnullnotvoid/msf_gif) | 2.1 | [core](https://github.com/raysan5/raylib/blob/master/src/core.c) | GIF recording basic functionality
[sdefl.h](https://github.com/vurtun/lib/blob/master/sdefl.h) | - | [core](https://github.com/raysan5/raylib/blob/master/src/core.c) | DEFLATE compression algorithm
[sinfl.h](https://github.com/vurtun/lib/blob/master/sinfl.h) | - | [core](https://github.com/raysan5/raylib/blob/master/src/core.c) | DEFLATE decompression algorithm
[GLAD](https://github.com/raysan5/raylib/blob/master/src/external/glad.h) | 0.1.10a0 | [rlgl](https://github.com/raysan5/raylib/blob/master/src/rlgl.c) | Extensions initialization for OpenGL 3.3 Core [GLAD](https://github.com/raysan5/raylib/blob/master/src/external/glad.h) | 0.1.10a0 | [rlgl](https://github.com/raysan5/raylib/blob/master/src/rlgl.c) | Extensions initialization for OpenGL 3.3 Core
[stb_image](https://github.com/raysan5/raylib/blob/master/src/external/stb_image.h) | 2.26 | [textures](https://github.com/raysan5/raylib/blob/master/src/texture.c) | Multiple image formats loading [stb_image](https://github.com/raysan5/raylib/blob/master/src/external/stb_image.h) | 2.26 | [textures](https://github.com/raysan5/raylib/blob/master/src/texture.c) | Multiple image formats loading
[stb_image_resize](https://github.com/raysan5/raylib/blob/master/src/external/stb_image_resize.h) | 0.96 | [textures](https://github.com/raysan5/raylib/blob/master/src/texture.c) | Image resizing functions [stb_image_resize](https://github.com/raysan5/raylib/blob/master/src/external/stb_image_resize.h) | 0.96 | [textures](https://github.com/raysan5/raylib/blob/master/src/texture.c) | Image resizing functions
@ -15,16 +17,16 @@ Library | Version | raylib module | Notes
[stb_perlin](https://github.com/raysan5/raylib/blob/master/src/external/stb_perlin.h) | 0.5 | [textures](https://github.com/raysan5/raylib/blob/master/src/textures.c) | Perlin noise generator [stb_perlin](https://github.com/raysan5/raylib/blob/master/src/external/stb_perlin.h) | 0.5 | [textures](https://github.com/raysan5/raylib/blob/master/src/textures.c) | Perlin noise generator
[stb_truetype](https://github.com/raysan5/raylib/blob/master/src/external/stb_truetype.h) | 1.24 | [text](https://github.com/raysan5/raylib/blob/master/src/text.c) | TTF/OTF fonts data loading [stb_truetype](https://github.com/raysan5/raylib/blob/master/src/external/stb_truetype.h) | 1.24 | [text](https://github.com/raysan5/raylib/blob/master/src/text.c) | TTF/OTF fonts data loading
[stb_rect_pack](https://github.com/raysan5/raylib/blob/master/src/external/stb_rect_pack.h) | 1.00 | [text](https://github.com/raysan5/raylib/blob/master/src/text.c) | Rectangles packer, used on font packing [stb_rect_pack](https://github.com/raysan5/raylib/blob/master/src/external/stb_rect_pack.h) | 1.00 | [text](https://github.com/raysan5/raylib/blob/master/src/text.c) | Rectangles packer, used on font packing
[miniaudio](https://github.com/dr-soft/miniaudio) | 0.10.25 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | Audio device management [miniaudio](https://github.com/mackron/miniaudio) | 0.10.33 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | Audio device management
[stb_vorbis](https://github.com/raysan5/raylib/blob/master/src/external/stb_vorbis.h) | 1.14 (fork) | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | OGG audio data loading [stb_vorbis](https://github.com/raysan5/raylib/blob/master/src/external/stb_vorbis.h) | 1.14 (fork) | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | OGG audio data loading
[dr_wav](https://github.com/raysan5/raylib/blob/master/src/external/dr_wav.h) | 0.12.14 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | WAV audio data loading [dr_wav](https://github.com/raysan5/raylib/blob/master/src/external/dr_wav.h) | 0.12.29 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | WAV audio data loading
[dr_mp3](https://github.com/raysan5/raylib/blob/master/src/external/dr_mp3.h) | 0.6.19 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | MP3 audio data loading [dr_mp3](https://github.com/raysan5/raylib/blob/master/src/external/dr_mp3.h) | 0.6.27 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | MP3 audio data loading
[dr_flac](https://github.com/raysan5/raylib/blob/master/src/external/dr_flac.h) | 0.12.22 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | FLAC audio data loading [dr_flac](https://github.com/raysan5/raylib/blob/master/src/external/dr_flac.h) | 0.12.29 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | FLAC audio data loading
[jar_mod](https://github.com/raysan5/raylib/blob/master/src/external/jar_mod.h) | 0.01 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | MOD audio module loading [jar_mod](https://github.com/raysan5/raylib/blob/master/src/external/jar_mod.h) | 0.01 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | MOD audio module loading
[jar_xm](https://github.com/raysan5/raylib/blob/master/src/external/jar_xm.h) | 0.01 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | XM audio module loading [jar_xm](https://github.com/raysan5/raylib/blob/master/src/external/jar_xm.h) | 0.3.1 | [raudio](https://github.com/raysan5/raylib/blob/master/src/raudio.c) | XM audio module loading
[par_shapes](https://github.com/raysan5/raylib/blob/master/src/external/par_shapes.h) | ? | [models](https://github.com/raysan5/raylib/blob/master/src/models.c) | Geometric shapes generation (*) [par_shapes](https://github.com/raysan5/raylib/blob/master/src/external/par_shapes.h) | - | [models](https://github.com/raysan5/raylib/blob/master/src/models.c) | Geometric shapes generation (*)
[tinyobj_loader_c](https://github.com/raysan5/raylib/blob/master/src/external/tinyobj_loader_c.h) | ? (Ray) | [models](https://github.com/raysan5/raylib/blob/master/src/models.c) | OBJ/MTL data loading (*) [tinyobj_loader_c](https://github.com/raysan5/raylib/blob/master/src/external/tinyobj_loader_c.h) | ? (Ray) | [models](https://github.com/raysan5/raylib/blob/master/src/models.c) | OBJ/MTL data loading (*)
[cgltf](https://github.com/raysan5/raylib/blob/master/src/external/cgltf.h) | 1.8 | [models](https://github.com/raysan5/raylib/blob/master/src/models.c) | glTF models data loading [cgltf](https://github.com/raysan5/raylib/blob/master/src/external/cgltf.h) | 1.10 | [models](https://github.com/raysan5/raylib/blob/master/src/models.c) | glTF models data loading
Note that some of the dependencies listed above are specific to one of the platforms that raylib supports. Note that some of the dependencies listed above are specific to one of the platforms that raylib supports.