28ed695d2f
Merge pull request #107190 from akien-mga/libtheora-1.2.0
...
libtheora: Update to 1.2.0
2025-06-06 17:37:58 +02:00
ff429e0e64
libtheora: Update to 1.2.0
2025-06-06 01:36:51 +02:00
ecd1d87875
msdfgen: Update to 1.12.1
2025-06-05 17:53:25 +02:00
6b09f6e6d9
zstd: Update to 1.5.7
...
Adds supports for x86_64 assembly for Windows/MinGW builds.
2025-06-05 16:03:14 +02:00
fa2533ba5a
Merge pull request #107026 from Chubercik/clipper2-1.5.3
...
clipper2: Update to 1.5.3
2025-06-04 10:34:35 -05:00
256fa39e51
clipper2: Update to 1.5.3
2025-06-04 00:05:20 +02:00
6565c8e83f
[AccessKit] Update API to 0.16.0.
2025-06-03 10:49:04 +03:00
b6b8c32673
Merge pull request #106465 from Chubercik/manifold-3.1.0
...
manifold: Update to 3.1.1
2025-06-02 18:51:54 -05:00
937612a11a
Merge pull request #106616 from DeeJayLSP/openxr-1147
...
Update OpenXR to 1.1.47
2025-06-02 18:51:51 -05:00
f3da6201f8
manifold: Update to 3.1.1
2025-06-01 10:13:46 +02:00
5c94127c2d
thorvg: Update to 0.15.13
2025-05-28 00:43:14 +02:00
a8ecd01e78
Merge pull request #106869 from bruvzg/unzip_64pos
...
Fix `unzSeekCurrentFile` not resetting `total_out_64`.
2025-05-27 09:39:36 -05:00
7c8ac0f0ab
Merge pull request #106851 from Chubercik/ufbx-0.18.2
...
ufbx: Update to 0.18.2
2025-05-27 09:39:33 -05:00
f0dcccf11c
Fix unzSeekCurrentFile not resetting total_out_64.
2025-05-27 16:23:48 +03:00
57569085d9
tinyexr: Update to 1.0.12
2025-05-27 00:23:06 +02:00
e861991448
ufbx: Update to 0.18.2
2025-05-27 00:07:39 +02:00
e89c4b0f9f
Merge pull request #102330 from RGDTAB/add_partial_smaa
...
Add SMAA 1x to screenspace AA options
2025-05-26 11:24:35 -05:00
4c530cb6a9
Update meshoptimizer to v0.23
...
Also remove the reference to a patch that was removed in a prior commit.
This includes improvements to simplification wrt attribute metric for certain
edge cases.
2025-05-23 06:08:25 +01:00
4daad86a86
Merge pull request #106562 from zeux/lod-metrics
...
Adjust LOD selection metrics to use attribute error
2025-05-22 12:15:03 -05:00
15de1d6c35
Use Grisu2 algorithm in String::num_scientific to fix serializing
2025-05-22 09:13:16 -07:00
6b99608950
Add SMAA 1x
2025-05-21 15:02:09 -04:00
a179a07fae
Merge pull request #106615 from DeeJayLSP/godot-certs-04-25
...
certs: Sync with upstream as of Apr 8 2025
2025-05-20 11:37:25 -05:00
f5eaf2a576
certs: Sync with upstream as of Apr 8 2025
2025-05-19 22:50:06 -03:00
f6d4bab263
Update OpenXR to 1.1.47
2025-05-19 16:25:23 -03:00
bc192598e5
Update qoa.h to latest git
2025-05-19 13:33:05 -03:00
6190d412d3
Adjust LOD selection metrics to use attribute error
...
- Revert meshoptimizer patch; the metric used for LOD selection now
incorporates attribute error
- Since LOD selection is now aware of attribute deviation, we don't
need to use a higher normal weight
- To prevent normal creases from creating input triangles with very
large normal deviation, reduce default normal merge threshold
- Since we now use combined metric to select LODs, we never need LODs
with error>1 as these should not be selected if the mesh is visible.
2025-05-18 17:38:54 +03:00
202b1176a4
Merge pull request #106251 from ArchercatNEO/wayland-cursor-shape
...
[Wayland] Implement the cursor-shape-v1 protocol
2025-05-16 10:29:02 -05:00
3cd7b5b9a8
[Wayland] Implement the cursor-shape-v1 protocol
...
Related #106229 . The cursor-shape protocol allows us to not have to deal with cursor theming and instead depend on the
compositor for it.
This still does not quite solve the issue when the compositor doesn't implement the protocol
(or running under the x11 backend) but for gnome/kde and a few more this should resolve things.
2025-05-15 15:42:48 +01:00
2a89ec5ccd
Fix libjpeg-turbo not working on 32-bit builds
2025-05-15 09:20:35 +10:00
f70420a8b1
Merge pull request #106346 from mihe/jolt/scu-support
...
Fix SCU build issues related to Jolt Physics
2025-05-13 16:22:26 -05:00
88c0552077
Merge pull request #104462 from solidpixel/astcenc_5.3.0
...
Update astcenc to the upstream 5.3.0 release
2025-05-13 16:22:10 -05:00
9cea7ebc91
Fix SCU build issues related to Jolt Physics
2025-05-13 12:34:55 +02:00
0bf9d88797
Merge pull request #106167 from Faless/mbedtls/fix_enable_threading
...
mbedTLS: Fix concurrency issues with TLS
2025-05-09 11:29:17 -05:00
2c789788c0
mbedTLS: Fix concurrency issues with TLS
...
When we first integrated mbedTLS, we decided not to enable
MBEDTLS_THREADING_C (which adds mutex locking to calls modifying the
state), and instead to simply create separate contexts ("states") for
each connection.
This worked fine until recently.
Sadly, mbedTLS 3 added a global state for the new PSA crypto
functionalities (which are required to support TLSv1.3).
This results in TLSv1.3 connections to access and modify the global
state concurrently when running in threads.
This commit enables MBEDTLS_THREADING_C, and MBEDTLS_THREADING_C_ALT to
provide a generic Godot implementation using the engine Mutex class.
2025-05-08 11:45:00 +02:00
9419ef2f34
basis_universal: Add missing ctype.h include to fix MSVC build
...
Seems like latest MSVC tweaked some headers and we no longer have definitions
for `isdigit` and `isalpha` without an explicit include.
2025-05-07 23:21:53 +02:00
a0cc41b5ed
Use libjpeg-turbo for improved jpg compatibility and speed
...
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com >
2025-05-02 11:47:56 +02:00
c00e6c83f1
Merge pull request #105856 from akien-mga/basis_universal-rediff-patches
...
basis_universal: Rediff patches, remove Windows encoding fix
2025-04-30 16:51:50 -05:00
be0bf71506
doctest: Patch for clang warning about replacing <ciso646> by <version>
2025-04-29 13:17:21 -04:00
151e2ecc4b
basis_universal: Rediff patches, remove Windows encoding fix
...
Convert the file to UTF-8 properly instead.
2025-04-28 10:27:32 +02:00
be994d59c9
Merge pull request #103968 from Chubercik/basis_universal-1.60
...
basis_universal: Update to 1.60
2025-04-27 19:21:17 -05:00
ea5548f7d5
Merge pull request #101348 from akien-mga/libwebp-1.5.0
...
libwebp: Update to 1.5.0
2025-04-25 11:35:59 -05:00
ffdffe03c4
Merge pull request #101345 from akien-mga/embree-4.3.3
...
embree: Update to 4.4.0
2025-04-25 11:35:57 -05:00
57b127cad3
Merge pull request #104912 from akien-mga/mbedtls-msan-disable-asm
...
mbedtls: Disable ASM when compiling with LLVM MemorySanitizer (MSAN)
2025-04-24 17:18:49 -05:00
57640dd806
embree: Update to 4.4.0
2025-04-24 17:51:03 +02:00
01f88ff138
libwebp: Update to 1.5.0
2025-04-24 16:24:51 +02:00
07fcb82958
32-bit MinGW g++ doesn't call the correct overload for the new operator when a type is 16 bytes aligned.
...
It uses the non-aligned version, which on 32 bit platforms usually returns an 8 byte aligned block. We therefore default to 16 byte aligned allocations when the regular new operator is used.
Fixes : godotengine/godot#105455
2025-04-23 22:12:43 +02:00
e90fb666a2
Merge pull request #105093 from Chubercik/thorvg-0.15.12
...
thorvg: Update to 0.15.12
2025-04-11 09:51:05 -05:00
0863a11cee
thorvg: Update to 0.15.12
2025-04-10 22:29:18 +02:00
44190d4060
Merge pull request #105096 from Chubercik/ufbx-0.18.0
...
ufbx: Update to 0.18.0
2025-04-09 18:11:52 -05:00
4310cb82b8
AccessKit integration for macOS, Linux, and Windows.
2025-04-08 20:25:47 +03:00