- Oct 20, 2022
-
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
-
The sql itemmodel, and certainly the itemmodel tester aren't used, so don't build these.
-
In preparation for the next commit.
-
It prints: Note: Option 'shared' with value 'no' was specified twice
-
The -skip configure option only works when using the top-level configure script, when building Qt in one go. Since we don't build the QtSql module anyway, this can be removed. It also gets rid of a warning: WARNING: Command line option -skip is only effective in top-level builds.
-
Steve Lhomme authored
-
Steve Lhomme authored
It may differ between compilers and is internally handled by CMake, including not doing it on Windows targets.
-
Steve Lhomme authored
It makes no difference since we install headers and build a static library only on mac. CMake defaults to PIC on shared libraries.
-
Steve Lhomme authored
...for static library builds. So we have a clearer view of which target uses PIC and which doesn't. aom does it with the CONFIG_PIC variable that we set with the same conditions we set PIC.
-
-
- Oct 18, 2022
-
-
Make window/GUI use filtered mouse events, as it was the case in VLC3 and VLC2.
-
Steve Lhomme authored
There are proper release tarballs that we can use. It's must faster to get and extract than git. If we need new upstream patches we can cherry-pick them until the next release, like other contribs.
-
- Oct 17, 2022
-
-
This will prevent using the bundled "harfbuzz-ng" which is really harfbuzz 1.7.4. The bundled "harfbuzz", which a very old version, is still compiled and linked in however, and can't be disabled [1]. [1]. https://bugreports.qt.io/browse/QTBUG-104647
-
-
Recently, the contrib libjpeg was changed to libjpeg-turbo with some improvements over libjpeg [1]. While Qt also bundles libjpeg-turbo, it is better to only build one copy. [1]. 4a1bd36f
-
In practice, Qt was already using the system png by accident, because the png is almost always built and installed before Qt is configured.
-
Steve Lhomme authored
* gcc is upgraded to 11.3.0 for vlc-debian-win32. * vlc-debian-win64 (win64 with gcc) is left out for now as it fails to compile gcrypt with a compiler bug/error. ``` during RTL pass: pro_and_epilogue ../../cipher/poly1305.c: In function 'poly1305_init': ../../cipher/poly1305.c:380:1: internal compiler error: in choose_baseaddr, at config/i386/i386.c:6915 380 | } | ^ 0x1539b77 internal_error(char const*, ...) ???:0 0x616601 fancy_abort(char const*, int, char const*) ???:0 0xe279f8 ix86_expand_prologue() ???:0 0x11ab44b gen_prologue() ???:0 0x89e851 thread_prologue_and_epilogue_insns() ???:0 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See <https://gcc.gnu.org/bugs/> for instructions. ```
-
- Oct 16, 2022
-
-
Fixes CVE-2022-37434.
-
In this commit, the --with-sanitizer option is forwarded to the configure script for VLC, but also intercepted so that the emcc call creating the plugin list can use the option as well. It's necessary for now since the plugin list is not generated by automake yet, thus the call to emcc is not intercepted to add the sanitizer options added from VLC's configure.ac.
-
- Oct 15, 2022
-
-
Since we no longer rely on embedding hard-coded arrays into the shader, we can finally free up this size limitation, thus improving the quality of dithering massively.
-
This commit merely activates the functionality supported by the previous commits, tying it all together.
-
This change will allow us to integrate more advanced libplacebo features, such as those requiring LUT-based tone-mapping (in recent versions of libplacebo).
-
This creates a pl_gpu suitable for use by shaders. It's worth noting that this commit does not hook the resulting pl_gpu into the shaders yet, because doing so would break the resulting shaders until we add support for mapping descriptors (in the following commit).
-
Simply continuing in this error case without assigning the corresponding uniform will silently lead to a broken shader / image. Since we rely on these assumptions, we should assert them so any such bugs are actually found in a debuggable way. This is only a theoretical risk since, as the comment points out, we don't rely on any such variables. But maybe this will unexpectedly change in the future.
-
This code, as written, is technically undefined behavior. It was fine so far because we didn't end up using the shader objects in any way that wasn't baked into the resulting pl_shader_res, but it needs to be fixed to allow shaders to reference GPU resources which may be used later on.
-
The dithering code can end up using uniform array variables when plugging pl_gpu information into the shader, so pre-emptively add support for these.
-
We have this for glUniform4fv, add the other types so I can use them.
-
This code as-written leaks libplacebo-related objects in the event of a failure here.
-
I want to start using the pl_opengl integration, so we need to slightly revise the check to ensure we also have the libplaceo opengl header available. It's worth pointing out that these headers eventually become non-conditional (in libplacebo git master as of writing), but we need to live with this transitional logic until then.
-
It should come from the environment to select what preferred set of Windows API is selected. And there's no reason to force it just for mingw.
-
Otherwise our CXXFLAGS/LDFLAGS are not used See https://doc.qt.io/qt-6/qmake-environment-reference.html#cache-file
-
-
Steve Lhomme authored
In the contribs we * check that HOST-protoc has the same version as protobuf otherwise * check that protoc has the same version as protobuf AC_CHECK_TOOL() only tests one version of protoc for the protobuf matching.
-
Steve Lhomme authored
protoc 3.4.1 reports a libprotoc version of 3.4.0
-