- Jul 29, 2024
-
-
Ensure mutex is unlocked if extension index exceeds array size to prevent deadlock.
-
Steve Lhomme authored
This is necessary to work on machines with Python 3.12. libplacebo fails to detect python with meson 1.2.0. 1.2.3 is the first to support Python 3.12 [1] We download 1.4.2 since 3f852923. [1] https://mesonbuild.com/meson-python/reference/meson-compatibility.html
-
Steve Lhomme authored
We will never have the same tarball on all platforms using different versions of tar, different order of files, different owner, etc. Since we generated the tarball we don't have to verify the checksum, we can assume it's OK, assuming cargo vendor is safe. If we ever delete the tarball, the marker is deleted so we check the download properly from the download if possible.
-
Steve Lhomme authored
-
Steve Lhomme authored
Just like the regular tarball checksum. The vendor tarball checksum is located in a <package>/vendor-SHA512SUMS and the rule to use is called .sum-vendor-<package>.
-
Steve Lhomme authored
Right now it doesn't exist, but later it will be and it needs to be checked properly. Some targets are renamed because the checksum macro uses a prefix per target.
-
-
-
-
this omits texture clearing incase the image is available in cache
-
Instead of stopping the fallback at OpenGL, probe OpenGL as well and use software renderer if OpenGL is not functional (probe test fails). Old machines that use Windows 7 may not support the features used by Qt for its OpenGL abstraction.
-
- Jul 27, 2024
-
-
It's not supported by Rust (at all).
-
-
-
-
-
-
-
Steve Lhomme authored
It was added in 3833584f
-
-
- Jul 26, 2024
-
-
Steve Lhomme authored
It's asm related to noop [1] but there doesn't seem to be any left in the asm code.
-
Steve Lhomme authored
This should fix link issues like: Undefined symbols for architecture x86_64: "__gcry_mpih_add_n", referenced from: __gcry_mpi_add in libgcrypt.a(mpi-add.o) _ec_addm_25519 in libgcrypt.a(ec.o) _ec_subm_25519 in libgcrypt.a(ec.o) _ec_mulm_25519 in libgcrypt.a(ec.o) _ec_addm_448 in libgcrypt.a(ec.o) _ec_subm_448 in libgcrypt.a(ec.o) _ec_mulm_448 in libgcrypt.a(ec.o) ... (maybe you meant: __gcry_mpih_add_n_cond)
-
Showing a blank rectangle (which is already drawn behind the image) is cheaper than loading the fallback image. The fallback image is still displayed if the regular image fails to load or takes more time to load than a `humanMoment` * When the image starts loading: `root.isImageReady` is false (`Image.Loading`), timer is running, no image is visible, the background is drawn * If the image finish loading successfully: `root.isImageReady` becomes true the fallback is not loaded * If the image finish fails to load: `root.isImageReady` remains false and `timer.running` becomes false (`Image.Error`), the fallback image becomes visible * If the image takes a long time to load: `root.isImageReady` remains false, timer times out so `timer.running` becomes false, the fallback image is loaded
-
-
-
-
... which sets the transient parent if the menu is a window automatically.
-
-
-
-
-
When `b_isDialogProvider` is false, the main window is shown, a compositor is expected to be available. For that reason, assert `p_compositor`.
-
When `b_isDialogProvider` is set, the main window is not shown, and `p_intf->p_compositor` is a null pointer.
-
Steve Lhomme authored
The build script has been cleaned up and now lists the contribs that will be built. See libvlcjni!88
-
Steve Lhomme authored
-
Steve Lhomme authored
Since dfdc613d
-
Direct3D 11.2 is introduced with Windows 8.1, and Qt RHI has already been using Direct3D 11.2 features.
-
- Jul 25, 2024
-
-
This is a problem with Qt 6.2. When a control within another control is hovered, the bigger control is no longer considered hovered.
-