| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| |
| |
| | |
The ENetDTLSServer socket implementation should avoid reporting errors
during send and receive operations, unless the socket is effectively no
longer usable (and thus ENet should close it).
|
|\ \
| |/
|/|
| | |
embree: Fix include order causing unwanted dllexport symbols
|
| | |
|
| | |
|
|/
|
|
| |
+ Fixes SVG: Graphical objects stored in <defs> shouldn't be rendered directly.
|
| |
|
|
|
|
|
| |
+ Fixes the v0.13.8 svg text error issue.
+ See https://github.com/thorvg/thorvg/releases/tag/v0.14.0
|
|\
| |
| |
| | |
thorvg: Update to 0.13.8
|
| | |
|
|/ |
|
| |
|
|\
| |
| |
| | |
[Wayland] Implement IME support.
|
| | |
|
| |
| |
| |
| |
| | |
They're of little help, and just adds to the possibility of causing
deadlocks.
|
|\ \
| |/
|/|
| | |
EGL: Use `EGL_EXT_platform_base` whenever possible
|
| |
| |
| |
| |
| |
| | |
This avoids any assumption from the driver, which would otherwise select
a specific platform and potentially mess up everything, resulting
usually in a display server failure.
|
|\ \
| | |
| | |
| | | |
CI: Hotfix for build error with newer clang++
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
It will be included in the next release at some point.
- https://github.com/RenderKit/embree/issues 486
"fix output operator"
[ 30%] Compiling thirdparty/embree/kernels/common/accelset.cpp ...
In file included from thirdparty/embree/kernels/common/device.cpp:12:
In file included from thirdparty/embree/kernels/common/scene_curves.h:10:
thirdparty/embree/kernels/common/../subdiv/bezier_curve.h:138:56:
error: no member named 'u' in 'QuadraticBezierCurve<V>'
138 | return cout << "QuadraticBezierCurve ( (" << a.u.lower << ", "
<< a.u.upper << "), " << a.v0 << ", " << a.v1 << ", " << a.v2 << ")";
...
|
|\ \ \
| |/ /
|/| |
| | | |
qoa: Apply upstream patches
|
| | | |
|
|/ / |
|
|\ \
| | |
| | |
| | | |
Fix building glslang on platforms without `<filesystem>`
|
| | | |
|
|\ \ \
| |/ /
|/| |
| | | |
Fix use of undeclared identifier `__cpuidex` error on MinGW
|
| | | |
|
| |/
|/|
| |
| |
| |
| |
| | |
Pass `VMA_ALLOCATOR_CREATE_KHR_MAINTENANCE5_BIT` to VMA when using Vulkan 1.3
features.
Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com>
|
|/
|
|
| |
Includes https://github.com/thorvg/thorvg/pull/2338 hotfix.
|
| |
|
|\
| |
| |
| | |
thorvg: Disable webp loader if corresponding module is disabled
|
| |
| |
| |
| | |
Fixes #91873.
|
|\ \
| | |
| | |
| | | |
libwebp: Update to 1.4.0
|
| | |
| | |
| | |
| | | |
https://chromium.googlesource.com/webm/libwebp/+/refs/tags/v1.4.0/NEWS
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
enet: Update to 1.3.18
|
| |/ /
| | |
| | |
| | | |
No change, just properly tagging the version we were using.
|
|/ /
| |
| |
| | |
https://github.com/ARM-software/astc-encoder/releases/tag/4.8.0
|
|/ |
|
|
|
|
| |
Remove embedded png loader, we use the external (libpng) one.
|
| |
|
|\
| |
| |
| | |
Add QOA (Quite OK Audio) as a WAV compression mode
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Our current Linux SDK for ARM32 from https://github.com/godotengine/buildroot
targets a relatively conservative baseline of neon-fp-armv8, and (at least based
on build issues I got) this doesn't seem to include hardware AES support.
Fixes #91352.
|
| |
| |
| |
| |
| |
| | |
This reverts commit 0f96251afe19007ff8965b00f00efc1d9b1d6ea1.
Fixes #90879.
|
|\ \
| | |
| | |
| | | |
Fix GCC 14 `-Wtemplate-id-cdtor` warnings
|
| | |
| | |
| | |
| | | |
Fixes #91206.
|
|/ /
| |
| |
| | |
generate stack trace from DWARF symbols.
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The `include/mbedtls/check_config.h` header file has a generic check
which requires `MBEDTLS_PLATFORM_C` to be defined on Windows when
building with MinGW and ancient MSVC versions.
The few mbedTLS files we include in builds without the module don't
really require anything from the mbedTLS platform file beside the
`mbedtls_platform_zeroize` function which we already override with a
custom one by defining `MBEDTLS_PLATFORM_ZEROIZE_ALT`.
So we simply add the same check and force the define in such case.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Keep module compatibility with mbedtls 2.x (old LTS branch).
A patch has been added to allow compiling after removing all the `psa_*`
files from the library folder (will look into upstreaming it).
Note: mbedTLS 3.6 finally enabled TLSv1.3 by default, but it requires
some module changes, and to enable PSA crypto (new "standard" API
specification), so it might be best done in a separate commit/PR.
|