Alexandre Julliard pushed to branch master at wine / wine
Commits:
376370ec by Tyson Whitehead at 2025-09-01T20:41:35+02:00
winebus: Unspecified condition blocks are full strength.
Under Windows and the PID specification it is possible to specify
less than the full set of condition blocks. Under SDL and the
Linux FF input API all condition blocks must always be specified.
This sets unspecified axes in the SDL and input backends to play
at full strength to agree with Windows and hidraw.
- - - - -
4a16b5e3 by Tyson Whitehead at 2025-09-01T20:41:35+02:00
joy.cpl: Play condition effects on indicated axis too.
Testing with a MS Sidewinde 2 under Windows reveals that playing
a codition effect on just one axis can only be done by explicitly
setting the other axes to a zero strength as unspecified axes
run at full strength and not no strength as might be expected.
The choosen axis must also be the Y axis in order for the result
of the rotation to agree with what happens with non-condition
effects. This is because the the -Y axis is the reference axis
for the direction (i.e., no rotation plays back on the Y axis).
- - - - -
3 changed files:
- dlls/joy.cpl/dinput.c
- dlls/winebus.sys/bus_sdl.c
- dlls/winebus.sys/bus_udev.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5d850302149c7eca65f5c768513b4…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5d850302149c7eca65f5c768513b4…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
edf3d4bb by Elizabeth Figura at 2025-09-01T15:42:41+02:00
ntdll: Add some traces to synchronization methods.
Normally we can rely on +server for these, but with fast synchronization we'll
be skipping the server.
- - - - -
d4654429 by Elizabeth Figura at 2025-09-01T15:42:44+02:00
ntdll: Add stub functions for in-process synchronization.
- - - - -
a6c3e515 by Elizabeth Figura at 2025-09-01T15:43:56+02:00
ntdll: Retrieve and cache an ntsync device on process init.
- - - - -
2e5a3bf7 by Elizabeth Figura at 2025-09-01T15:43:56+02:00
server: Create inproc sync events for message queues.
- - - - -
98e21dfe by Elizabeth Figura at 2025-09-01T15:50:59+02:00
server: Add a request to retrieve the inproc sync fds.
- - - - -
94991cb4 by Elizabeth Figura at 2025-09-01T15:50:59+02:00
ntdll: Check inproc sync handle access rights on wait.
- - - - -
16 changed files:
- configure
- configure.ac
- dlls/ntdll/unix/server.c
- dlls/ntdll/unix/sync.c
- dlls/ntdll/unix/unix_private.h
- include/config.h.in
- include/wine/server_protocol.h
- server/Makefile.in
- + server/inproc_sync.c
- server/object.h
- server/protocol.def
- server/queue.c
- server/request_handlers.h
- server/request_trace.h
- server/thread.c
- server/user.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c26b95949d93e2cefa417a02c70df…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c26b95949d93e2cefa417a02c70df…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
9606ae89 by Eric Pouech at 2025-09-01T11:51:22+02:00
cmd/tests: Add tests about opening/closing parenthesis.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
7fa38191 by Eric Pouech at 2025-09-01T11:51:25+02:00
cmd: Don't create binary node with NULL RHS.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
1d898355 by Eric Pouech at 2025-09-01T11:51:28+02:00
cmd: Simplify builtin ECHO implementation.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
13d7ad2b by Eric Pouech at 2025-09-01T11:51:31+02:00
cmd: Fix handling of '(' in echo commands.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57913
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
56e1857c by Eric Pouech at 2025-09-01T11:51:36+02:00
cmd: Fix unmatched closing parenthesis handling.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57912
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
e672573b by Eric Pouech at 2025-09-01T11:51:40+02:00
cmd/tests: Add more tests about ERASE builtin command.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
36411df9 by Eric Pouech at 2025-09-01T11:51:45+02:00
cmd: Fix return code for ERASE builtin command.
When run on a wild card:ed parameter without any match.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58027
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
0c4f995d by Eric Pouech at 2025-09-01T11:51:50+02:00
cmd/tests: Add tests about (not) echoing labels.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
7b40cf96 by Eric Pouech at 2025-09-01T11:51:53+02:00
cmd: Don't display labels when echo mode is ON.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58614
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
6 changed files:
- programs/cmd/builtins.c
- programs/cmd/tests/test_builtins.bat
- programs/cmd/tests/test_builtins.bat.exp
- programs/cmd/tests/test_builtins.cmd
- programs/cmd/tests/test_builtins.cmd.exp
- programs/cmd/wcmdmain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d79cf39c1fadf4ad01e7504884adc…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d79cf39c1fadf4ad01e7504884adc…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
401914f2 by Vibhav Pant at 2025-09-01T11:48:11+02:00
windows.applicationmodel/tests: Add tests for exposing inproc WinRT classes through the manifest.
- - - - -
4 changed files:
- dlls/windows.applicationmodel/tests/Makefile.in
- dlls/windows.applicationmodel/tests/application.c
- + dlls/windows.applicationmodel/tests/application.spec
- dlls/windows.applicationmodel/tests/appxmanifest.xml
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/401914f2e23d234ec39f4273e95c7c…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/401914f2e23d234ec39f4273e95c7c…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
6aa82510 by Vibhav Pant at 2025-09-01T11:48:00+02:00
opcservices/tests: Add tests for ReadPackageFromStream.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
4715bebd by Nikolay Sivov at 2025-09-01T11:48:01+02:00
opcservices/tests: Use wide-char strings.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
4c29a11b by Nikolay Sivov at 2025-09-01T11:48:01+02:00
opcservices/tests: Remove Vista workarounds.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
b1390b7a by Nikolay Sivov at 2025-09-01T11:48:02+02:00
opcservices/tests: Use stricter return values checks.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
65cd8f7b by Vibhav Pant at 2025-09-01T11:48:02+02:00
opcservices/tests: Add some more tests for MoveNext().
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
9d3b6309 by Nikolay Sivov at 2025-09-01T11:48:02+02:00
opcservices: Fix MoveNext() at the collection end.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
a84903fc by Nikolay Sivov at 2025-09-01T11:48:02+02:00
opcservices/tests: Add more tests for MovePrevious().
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
bd7802d0 by Nikolay Sivov at 2025-09-01T11:48:03+02:00
opcservice: Fix iteration with MovePrevious().
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
3 changed files:
- dlls/opcservices/package.c
- dlls/opcservices/tests/opcservices.c
- include/opcbase.idl
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1d1e5fb3e51b2acb0143e86c16463…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1d1e5fb3e51b2acb0143e86c16463…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
9b375b3d by Henri Verbeet at 2025-09-01T15:15:32+02:00
vkd3d-shader/glsl: Implement VSIR_OP_UREM.
- - - - -
05b58c99 by Henri Verbeet at 2025-09-01T15:15:32+02:00
vkd3d-shader/glsl: Handle SV_INSTANCE_ID inputs.
- - - - -
b9b99205 by Henri Verbeet at 2025-09-01T15:15:32+02:00
vkd3d-shader/glsl: Implement support for VKD3DSPR_SAMPLEMASK registers.
- - - - -
392da43d by Henri Verbeet at 2025-09-01T15:15:32+02:00
vkd3d-shader/ir: Remove VSIR_OP_DCL_INPUT_PRIMITIVE instructions.
- - - - -
979d7e4b by Henri Verbeet at 2025-09-01T15:15:32+02:00
vkd3d-shader/ir: Remove VSIR_OP_DCL_OUTPUT_TOPOLOGY instructions.
- - - - -
7 changed files:
- libs/vkd3d-shader/glsl.c
- libs/vkd3d-shader/ir.c
- libs/vkd3d-shader/spirv.c
- tests/hlsl/arithmetic-int-uniform.shader_test
- tests/hlsl/coverage.shader_test
- tests/hlsl/instance-id.shader_test
- tests/hlsl/rasteriser-ordered-views.shader_test
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/71ed37f26d38fdc796901345165a…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/71ed37f26d38fdc796901345165a…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
9497c6fb by Henri Verbeet at 2025-09-01T15:14:06+02:00
vkd3d-shader/ir: Pass NULL locations to vkd3d_shader_error() in vsir_program_insert_clip_planes().
And two "whole program" locations.
- - - - -
a63762c4 by Henri Verbeet at 2025-09-01T15:14:06+02:00
vkd3d-shader/ir: Pass a NULL location to vkd3d_shader_error() in vsir_program_insert_point_size().
- - - - -
b3162ede by Henri Verbeet at 2025-09-01T15:14:06+02:00
vkd3d-shader/ir: Pass NULL locations to vkd3d_shader_error() in vsir_program_insert_point_size_clamp().
- - - - -
ebeb216f by Henri Verbeet at 2025-09-01T15:14:06+02:00
vkd3d-shader/ir: Generate location information in vsir_program_insert_point_coord().
- - - - -
9d5cbd7e by Henri Verbeet at 2025-09-01T15:14:06+02:00
vkd3d-shader/ir: Pass NULL locations to vkd3d_shader_error() in vsir_program_insert_fragment_fog().
- - - - -
71ed37f2 by Henri Verbeet at 2025-09-01T15:14:07+02:00
vkd3d-shader/ir: Pass NULL locations to vkd3d_shader_error() in vsir_program_insert_vertex_fog().
- - - - -
1 changed file:
- libs/vkd3d-shader/ir.c
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/158f8b3cf6ff528eb6897baf04db…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/158f8b3cf6ff528eb6897baf04db…
You're receiving this email because of your account on gitlab.winehq.org.