summaryrefslogtreecommitdiff
path: root/thirdparty/README.md
AgeCommit message (Collapse)Author
2020-12-18bullet: Sync with upstream 3.07Rémi Verschelde
2020-12-13Rework Mesh handling on scene importing.reduz
-Reworked how meshes are treated by importer by using EditorSceneImporterMesh and EditorSceneImporterMeshNode. Instead of Mesh and MeshInstance, this allows more efficient processing of meshes before they are actually registered in the RenderingServer. -Integrated MeshOptimizer -Reworked internals of SurfaceTool to use arrays, making it more performant and easy to run optimizatons on.
2020-12-04Updated open-simplex to have const noise functionsSacha Waked
"open-simplex-noise-in-c" now updated to master and "opensimplex" module refactored accordingly
2020-12-02xatlas: Sync with upstream 5571fc7Adam Brown
Fixes #44017 by changing the `normalize()` function to check for non-negative rather than non-zero via an epsilon check.
2020-11-26[Complex Text Layouts] Add third-party TextServer dependencies (ICU, ↵bruvzg
HarfBuzz, Graphite).
2020-11-26[Complex Text Layouts] Implement TextServer interface. Implement Fallback ↵bruvzg
TextServer.
2020-11-20Merge pull request #43719 from akien-mga/nanosvg-3e403ecRémi Verschelde
nanosvg: Sync with upstream 3e403ec
2020-11-20doctest: Update to 2.4.1Andrii Doroshenko (Xrayez)
Includes a patch for breakpoint inline assembly for macOS.
2020-11-20nanosvg: Sync with upstream 3e403ecRémi Verschelde
Includes some loop condition fixes after fuzzing. The previously identified regression (#43641) is now fixed upstream.
2020-11-18Revert "nanosvg: Sync with upstream cc6c08d"Rémi Verschelde
This reverts commit f697e7879b0c1b37b94b890b3f2a9910e5d822a2. Part of the update introduced a regression: https://github.com/memononen/nanosvg/issues/188. We could include a local revert of the problematic commit but let's just do a full revert to our previous version, and I'll re-update once the regression is fixed upstream. Fixes #43641.
2020-11-18nanosvg: Sync with upstream cc6c08dRémi Verschelde
Includes some loop condition fixes after fuzzing.
2020-11-09Update "open-simplex-noise-in-c" to fix undefined signed overflow.bruvzg
2020-10-26Merge pull request #42817 from akien-mga/vulkan-sdk-1.2.154.0Rémi Verschelde
vulkan: Sync loader, headers and glslang to sdk-1.2.154.0
2020-10-22Update freetype to 2.10.4volzhs
2020-10-15vulkan: Sync loader, headers and glslang to sdk-1.2.154.0Rémi Verschelde
Actually sdk-1.2.154.1 for Vulkan-Loader. glslang is updated to bacaef3237c515e40d1a24722be48c0a0b30f75f which is the known-good version for Vulkan-ValidationLayers 1.2.154.0. COPYRIGHT.txt was synced with the current version of the glslang LICENSE.txt, and `glslang/register_types.cpp` now uses the upstream definition for its default builtin resource instead of hardcoding it.
2020-09-18zstd: Update to upstream version 1.4.5Rémi Verschelde
2020-09-09tinyexr: Sync with upstream 1.0.0Rémi Verschelde
2020-09-07Update mbedTLS to version 2.16.8 (+ patch).Fabio Alessandrelli
2020-08-13Remove obsolete GLES2 backend codeRémi Verschelde
This code currently isn't compiled (and cannot compile). We plan to re-add OpenGL ES-based renderer(s) in Godot 4.0 alongside Vulkan (probably ES 3.0, possibly also a low-end ES 2.0), but the code will be quite different so it's not relevant to keep this old Godot 3.2 code. The `drivers/gles2` code from the `3.2` branch can be used as a reference for a potential new implementation.
2020-07-24[macOS / ARM64] Remove "-msse2" flag from ARM64 release export template ↵bruvzg
build. Add ARM64 breakpoint inline assembly to "doctest".
2020-07-24t Add unit testing to Godot using DocTest and added to GitHub Actions CIRevoluPowered
Implements exit codes into the engine so tests can return their statuses. Ideally we don't do this, and we use FIXUP logic to 'begin' and 'end' the engine execution for tests specifically. Since realistically we're initialising the engine here we don't want to do that, since String should not require an engine startup to test a single header. This lowers the complexity of running the unit tests and even for physics should be possible to implement such a fix.
2020-07-20stb_vorbis: Update to upstream version 1.20Rémi Verschelde
Upstreams our crash fixes from #38422 and #40174.
2020-07-02Merge pull request #40058 from Faless/wslay/1.1.1Rémi Verschelde
Update to wslay 1.1.1 .
2020-07-02Update to wslay 1.1.1 .Fabio Alessandrelli
A minor fix, but let's stay in sync.
2020-07-02Update to mbedtls 2.16.7Fabio Alessandrelli
2020-06-06oidn: Fix build for VS 2017Rémi Verschelde
Backporting this upstream patch: https://github.com/OpenImageDenoise/mkl-dnn/commit/1e42e6db81e1a5270ecc0191c5385ce7e7d978e9 Fixes #39186.
2020-06-06Upgrade OpenImageDenoise to v1.1.0jfons
Upgrade OIDN to 1.1.0, the latest stable version that doesn't need the ISPC compiler. Documented the changes made during the removal of TBB and added a patch file for them.
2020-05-20xatlas: Sync with upstream 470576dRémi Verschelde
2020-05-18Remove no longer needed patches to jpgd.cppPedro J. Estébanez
2020-05-16Update r128.h to include latest fix for mingw-64 32 bit builds.Marcel Admiraal
2020-05-11thirdparty: Cleanup after #38386, document provenance and copyrightRémi Verschelde
Also renamed `delaunay.h` to `delaunay_2d.h` to match the class name.
2020-05-09freetype: Update to upstream version 2.10.2Rémi Verschelde
2020-05-03Merge pull request #38422 from RandomShaper/fix_stb_vorbisRémi Verschelde
Fix crash in stb_vorbis.c
2020-05-03Fix crash in stb_vorbis.cPedro J. Estébanez
2020-05-01thirdparty: List release years in README.mdRémi Verschelde
And expand commit hashes to full hashes instead of shortened ones.
2020-04-30Merge pull request #38365 from akien-mga/tinyexr-4dbd05aRémi Verschelde
tinyexr: Sync with upstream 4dbd05a + enable C++11 threaded loading
2020-04-30Merge pull request #38364 from akien-mga/recast-57610faRémi Verschelde
Recast: Update to upstream commit 57610fa (2019)
2020-04-30Merge pull request #38363 from akien-mga/pcre2-10.34Rémi Verschelde
pcre2: Update to upstream version 10.34
2020-04-30Merge pull request #38361 from akien-mga/stb_vorbis-1.19Rémi Verschelde
stb_vorbis: Update to upstream version 1.19
2020-04-30Merge pull request #38360 from akien-mga/drop-unused-curl_hostcheckRémi Verschelde
Drop now unused curl_hostcheck.c
2020-04-30tinyexr: Sync with upstream 4dbd05aRémi Verschelde
2020-04-30Recast: Update to upstream commit 57610fa (2019)Rémi Verschelde
2020-04-30pcre2: Update to upstream version 10.34Rémi Verschelde
Changelog: https://vcs.pcre.org/pcre2/code/tags/pcre2-10.34/ChangeLog?view=markup
2020-04-30stb_vorbis: Update to upstream version 1.19Rémi Verschelde
1.19 - 2020-02-05 - warnings 1.18 - 2020-02-02 - fix seek bugs; parse header comments; misc warnings etc.
2020-04-30Drop now unused curl_hostcheck.cRémi Verschelde
One less thirdparty library to document \o/
2020-04-30FastLZ: Update to upstream version 0.5.0Rémi Verschelde
Upstream development restarted after 13 years. Changes: 2020-02-02: Version 0.5.0 Minor speed improvement on the decompressor. Prevent memory violation when decompressing corrupted input. 2020-01-10: Version 0.4.0 Only code & infrastructure clean-up, no new functionality.
2020-04-30Merge pull request #38073 from akien-mga/enet-1.3.15Rémi Verschelde
enet: Update to upstream version 1.3.15
2020-04-27Update to bullet master (2.90)PouleyKetchoupp
2020-04-21Fix compilation of jpgd.cpp on MSVC 2017Pedro J. Estébanez
2020-04-21enet: Update to upstream version 1.3.15Rémi Verschelde