Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52128
Signed-off-by: Robert Wilhelm <robert.wilhelm(a)gmx.net>
--
v12: scrrun: Return path not found error if no folders were moved in MoveFolder().
scrrun: return path not found error if source ends with path separator in MoveFolder().
scrrun: Move directories only in MoveFolder().
scrrun: Support wildcards in MoveFolder().
scrrun: Move source dir into destination dir if destination ends with separator in MoveFolder().
scrrun: Check that source is directory in MoveFolder().
scrrun: Check for non-existant source in MoveFolder().
scrrun: Test MoveFolder with already existing destination.
scrrun: Check for null and empty arguments in MoveFolder.
scrrun: Implement MoveFolder().
https://gitlab.winehq.org/wine/wine/-/merge_requests/391
Otherwise the first rule wins and bison / bison -d output differs and
causes reproducibility issues as during parallel either .h or .c rule
could be called first.
Reported-By: Bernhard Wiedemann <bwiedemann(a)suse.de>
Signed-off-by: Marcus Meissner <marcus(a)jet.franken.de>
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/4035
When using native xinput in WRC9, vccorlib is needed to make sure xinput doesn't crash.
--
v2: wincorlib: Add stub for platform_details_uninit_data.
wincorlib: Add stub for platform_details_init_data.
vccorlib140: Add stub dll.
wincorlib: Add stub dll.
https://gitlab.winehq.org/wine/wine/-/merge_requests/3334
Fixes a hang when joining a multiplayer game in Burnout Paradise Remastered. The game expects to find a space in the device name and spins forever trying if it can't.
--
v3: winepulse.drv: Change device description.
https://gitlab.winehq.org/wine/wine/-/merge_requests/4096
First part of a series that allows the shader-runner to test SM1 compilation on [shader] directives even if a backend to run these tests is not available and prepare they way for SM1-only tests.
Specifically:
- Compile [shader] directives separately from backend execution (on part 1).
- Allow specifying more detailed shader ranges for todo(), fail() and notimpl() qualifiers (on part 2).
- Always test shader compilation with SM1 profiles (on part 2).
The `minimum_shader_model` and `maximum_shader_model` parameters for run_shader_tests() are interpreted in the following way:
> Ask the pertaining backend to run the shader_test file so that each test is executed with the lowest profile it can support within the range of shader models specified, if any.
This allows us to control how many shader models we want to test for each backend, e.g.:
```
run_shader_tests(..., SHADER_MODEL_2_0, SHADER_MODEL_3_0)
run_shader_tests(..., SHADER_MODEL_4_0, SHADER_MODEL_5_1)
run_shader_tests(..., SHADER_MODEL_6_0, SHADER_MODEL_6_0)
```
versus
```
for (i = SHADER_MODEL_2_0, i <= SHADER_MODEL_6_0, ++i)
run_shader_tests(..., i, i);
```
Also, to allow to compile [shader] directives, which are not backend-specific, separately from the [test] directives, which are, the run_shader_tests() function is modified to skip backend specific directives if the shader_runner_ops is NULL.
Following patches are on my [master6i](https://gitlab.winehq.org/fcasas/vkd3d/-/commits/master6i) branch.
--
v3: tests/shader-runner: Compile [shader] directives separately from backend execution.
tests/shader-runner: Execute runner for many shader model ranges if it supports it.
tests/shader-runner: Discern between the minimum_shader_model and the selected_shader_model.
https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/418
Basically, @giomasce proposal of specifying shader models for tests individually.
Supersedes !418.
---
To make the shader_runner expressive enough to handle SM1 and SM6 shader
models on tests, we need to intercept the shader model ranges for which
we want to run the tests with the ranges that each backend is capable of
running, this is complicated.
So, to make it more clear, the test's shader models are specified
individually, and runner->minimum_shader_model and
runner->maximum_shader_model are replaced with just
runner->current_shader_model.
The supported ranges are removed from the backends (except for d3d12, which handles them internally)
and their check_requirements functions is always assumed to exist and
return either true or false for just a single shader model.
Something that must be kept in mind with these changes is that if two
tests with different shader models rely on the same resources, these
resources must be either specified twice, or after a [require] directive
that includes all the pertaining models. This was necessary for
gather.shader_test and gather-offset.shader_test.
---
The following patches would change:
```
run_compilation_tests(SHADER_MODEL_4_0, SHADER_MODEL_5_1, NULL);
```
to
```
run_compilation_tests(SHADER_MODEL_2_0, SHADER_MODEL_5_1, NULL);
```
for Unix and non-cross builds, so we can test SM1 compilation even if we don't have a backend available that can actually run the tests. Some improvements to the qualifiers are required before that, to mark sm1 todos properly.
Once we have a proper SM1 runner, maybe we could get rid of run_compilation_tests().
--
https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/434