@ -4,15 +4,15 @@ The following table lists the raylib dependencies. Most of them are single-file
Library | Version | License | raylib module | Notes/Comments
--- | :---: | :--- | :---: | ---
[GLFW3 ](https://github.com/glfw/glfw ) | 3.4-master | [zlib/libpng ](https://github.com/glfw/glfw/blob/master/LICENSE.md ) | [rglfw ](https://github.com/raysan5/raylib/blob/master/src/rglfw.c ) | Window and input management, only on `PLATFORM_DESKTOP`
[GLFW3 ](https://github.com/glfw/glfw ) | 3.4 | [zlib/libpng ](https://github.com/glfw/glfw/blob/master/LICENSE.md ) | [rglfw ](https://github.com/raysan5/raylib/blob/master/src/rglfw.c ) | Window and input management, only on `PLATFORM_DESKTOP`
[glad.h ](https://github.com/Dav1dde/glad ) | 2.0.0-beta | [MIT ](https://github.com/Dav1dde/glad/blob/glad2/LICENSE ) | [rlgl ](https://github.com/raysan5/raylib/blob/master/src/rlgl.c ) | OpenGL extensions loading, only on `PLATFORM_DESKTOP` and `OpenGL 4.3 Core`
[glad_gles2.h ](https://github.com/Dav1dde/glad ) | 2.0.2 | [MIT ](https://github.com/Dav1dde/glad/blob/glad2/LICENSE ) | [rlgl ](https://github.com/raysan5/raylib/blob/master/src/rlgl.c ) | OpenGL extensions loading, only on `PLATFORM_DESKTOP` and `OpenGL ES 2.0`
[msf_gif ](https://github.com/notnullnotvoid/msf_gif ) | 2.2 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/msf_gif.h ) | [rcore ](https://github.com/raysan5/raylib/blob/master/src/rcore.c ) | GIF recording basic functionality
[sdefl.h ](https://github.com/vurtun/lib/blob/master/sdefl.h ) | 1.00 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/sdefl.h ) | [rcore ](https://github.com/raysan5/raylib/blob/master/src/rcore.c ) | DEFLATE compression algorithm
[sinfl.h ](https://github.com/vurtun/lib/blob/master/sinfl.h ) | 1.00 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/sinfl.h ) | [rcore ](https://github.com/raysan5/raylib/blob/master/src/rcore.c ) | DEFLATE decompression algorithm
[rprand ](https://github.com/raysan5/raylib/tree/master/src/external/rprand.h ) | 1.0 | zlib/libpng | [rcore ](https://github.com/raysan5/raylib/blob/master/src/rcore.c ) | Pseudo-random numbers generator
[stb_image ](https://github.com/nothings/stb ) | 2.28 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_image.h ) | [rtextures ](https://github.com/raysan5/raylib/blob/master/src/rtextures.c ) | Multiple image formats loading
[stb_image_resize2 ](https://github.com/nothings/stb ) | 2.0 1 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_image_resize.h ) | [rtextures ](https://github.com/raysan5/raylib/blob/master/src/rtextures.c ) | Image resizing functions
[stb_image ](https://github.com/nothings/stb ) | 2.30 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_image.h ) | [rtextures ](https://github.com/raysan5/raylib/blob/master/src/rtextures.c ) | Multiple image formats loading
[stb_image_resize2 ](https://github.com/nothings/stb ) | 2.12 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_image_resize2 .h ) | [rtextures ](https://github.com/raysan5/raylib/blob/master/src/rtextures.c ) | Image resizing functions
[stb_image_write ](https://github.com/nothings/stb ) | 1.16 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_image_write.h ) | [rtextures ](https://github.com/raysan5/raylib/blob/master/src/rtextures.c ) | Image writing to multiple formats
[stb_perlin ](https://github.com/nothings/stb ) | 0.5 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_perlin.h ) | [rtextures ](https://github.com/raysan5/raylib/blob/master/src/rtextures.c ) | Simplex Perlin noise generation
[qoi ](https://github.com/phoboslab/qoi ) | - | [MIT ](https://github.com/phoboslab/qoi/blob/master/LICENSE ) | [rtextures ](https://github.com/raysan5/raylib/blob/master/src/rtextures.c ) | QOI image data loading and saving
@ -21,15 +21,15 @@ Library | Version | License | raylib module | Notes/Comments
[stb_rect_pack ](https://github.com/nothings/stb ) | 1.01 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_rect_pack.h ) | [rtext ](https://github.com/raysan5/raylib/blob/master/src/rtext.c ) | Rectangles packer, used on font packing
[miniaudio ](https://github.com/mackron/miniaudio ) | 0.11.12 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/miniaudio.h ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | Audio device management
[stb_vorbis ](https://github.com/nothings/stb ) | 1.22 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/stb_vorbis.c ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | OGG audio data loading
[dr_wav ](https://github.com/mackron/dr_libs ) | 0.13.7 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/dr_wav.h ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | WAV audio data loading
[dr_mp3 ](https://github.com/mackron/dr_libs ) | 0.6.34 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/dr_mp3.h ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | MP3 audio data loading
[dr_wav ](https://github.com/mackron/dr_libs ) | 0.13.16 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/dr_wav.h ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | WAV audio data loading
[dr_mp3 ](https://github.com/mackron/dr_libs ) | 0.6.39 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/dr_mp3.h ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | MP3 audio data loading
[dr_flac ](https://github.com/mackron/dr_libs ) | 0.12.39 | [MIT/public domain ](https://github.com/raysan5/raylib/blob/master/src/external/dr_flac.h ) | [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 | [public domain ](https://github.com/raysan5/raylib/blob/master/src/external/jar_mod.h ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | MOD audio module loading, based on [HxCModPlayer ](https://github.com/jfdelnero/HxCModPlayer )
[jar_xm ](https://github.com/raysan5/raylib/blob/master/src/external/jar_xm.h ) | 0.3.1 | [public domain ](https://github.com/raysan5/raylib/blob/master/src/external/jar_xm.h ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | XM audio module loading, based on [libxm ](https://github.com/Artefact2/libxm )
[qoa ](https://github.com/phoboslab/qoa ) | - | [MIT ](https://github.com/phoboslab/qoa/blob/master/LICENSE ) | [raudio ](https://github.com/raysan5/raylib/blob/master/src/raudio.c ) | QOA audio data loading and saving
[par_shapes ](https://github.com/prideout/par/blob/master/par_shapes.h ) | - | [MIT ](https://github.com/raysan5/raylib/blob/master/src/external/par_shapes.h ) | [rmodels ](https://github.com/raysan5/raylib/blob/master/src/rmodels.c ) | Geometric shapes generation
[tinyobj_loader_c ](https://github.com/syoyo/tinyobjloader-c ) | - | [MIT ](https://github.com/raysan5/raylib/blob/master/src/external/tinyobj_loader_c.h ) | [rmodels ](https://github.com/raysan5/raylib/blob/master/src/rmodels.c ) | OBJ/MTL data loading
[cgltf ](https://github.com/jkuhlmann/cgltf ) | 1.13 | [MIT ](https://github.com/raysan5/raylib/blob/master/src/external/cgltf.h ) | [rmodels ](https://github.com/raysan5/raylib/blob/master/src/rmodels.c ) | glTF models data loading
[cgltf ](https://github.com/jkuhlmann/cgltf ) | 1.14 | [MIT ](https://github.com/raysan5/raylib/blob/master/src/external/cgltf.h ) | [rmodels ](https://github.com/raysan5/raylib/blob/master/src/rmodels.c ) | glTF models data loading
[vox_loader ](https://github.com/raysan5/raylib/blob/master/src/external/vox_loader.h ) | 1.01 | [MIT ](https://github.com/raysan5/raylib/blob/master/src/external/vox_loader.h ) | [rmodels ](https://github.com/raysan5/raylib/blob/master/src/rmodels.c ) | VOX models data loading
[m3d ](https://bztsrc.gitlab.io/model3d/ ) | 1.0.0 | [MIT ](https://gitlab.com/bztsrc/model3d/-/blob/master/LICENSE ) | [rmodels ](https://github.com/raysan5/raylib/blob/master/src/rmodels.c ) | M3D models data loading