Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
615dce0e by Henri Verbeet at 2025-05-06T18:29:06+02:00
vkd3d: Introduce struct vkd3d_null_event.
This effectively moves "null_event_cond" from struct d3d12_fence and
"latch" from struct vkd3d_waiting_event together into a separate
structure, as well as storing the signalling function in struct
vkd3d_waiting_event instead of getting it from struct d3d12_device. I
think that largely makes sense on its own, but storing the signalling
function in struct vkd3d_waiting_event also allows us to more easily
implement d3d12_device_SetEventOnMultipleFenceCompletion() in a
subsequent commit.
- - - - -
e54070c2 by Henri Verbeet at 2025-05-06T18:29:06+02:00
vkd3d: Introduce d3d12_fence_add_waiting_event().
- - - - -
75ce9cef by Henri Verbeet at 2025-05-06T18:29:06+02:00
tests/d3d12: Test ID3D12Device1_SetEventOnMultipleFenceCompletion().
- - - - -
3ea84156 by Henri Verbeet at 2025-05-06T18:29:06+02:00
vkd3d: Validate the fence count in d3d12_device_SetEventOnMultipleFenceCompletion().
- - - - -
52b947a0 by Henri Verbeet at 2025-05-06T18:29:06+02:00
vkd3d: Handle single fence waits in d3d12_device_SetEventOnMultipleFenceCompletion().
By forwarding to ID3D12Fence_SetEventOnCompletion().
- - - - -
9222f5e5 by Henri Verbeet at 2025-05-06T18:29:06+02:00
vkd3d: Handle multiple fence ALL waits in d3d12_device_SetEventOnMultipleFenceCompletion().
- - - - -
3fabac3f by Henri Verbeet at 2025-05-06T18:29:06+02:00
vkd3d: Handle multiple fence ANY waits in d3d12_device_SetEventOnMultipleFenceCompletion().
- - - - -
cb4b5641 by Henri Verbeet at 2025-05-06T18:29:06+02:00
vkd3d: Handle multiple fence NULL event waits in d3d12_device_SetEventOnMultipleFenceCompletion().
- - - - -
4 changed files:
- libs/vkd3d/command.c
- libs/vkd3d/device.c
- libs/vkd3d/vkd3d_private.h
- tests/d3d12.c
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/4289ec60a1f79f68ea9bd3624141…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/4289ec60a1f79f68ea9bd3624141…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
58c388a4 by Piotr Caban at 2025-05-05T16:26:25-05:00
netapi32: Validate bufptr argument before accessing it.
- - - - -
72075e8d by Piotr Caban at 2025-05-05T16:26:25-05:00
netapi32: Fix WOW64 server_getinfo thunk.
- - - - -
8d1005f5 by Piotr Caban at 2025-05-05T16:26:25-05:00
netapi32: Fix WOW64 share_add thunk.
- - - - -
7613b549 by Piotr Caban at 2025-05-05T16:26:25-05:00
netapi32: Fix WOW64 wksta_getinfo thunk.
- - - - -
226a7eea by Piotr Caban at 2025-05-05T16:26:25-05:00
netapi32: Use correct allocators for buffers returned by NetServerGetInfo and NetWkstaGetInfo.
- - - - -
2 changed files:
- dlls/netapi32/netapi32.c
- dlls/netapi32/unixlib.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d211b69528e19644fe6df2d650e10…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d211b69528e19644fe6df2d650e10…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
d211b695 by Alex Henrie at 2025-05-05T16:26:25-05:00
quartz: Clamp MediaSeeking_GetCurrentPosition to the stop position.
test_graph_seeking sets the stop time to 6 seconds and then checks that
the media has stopped at that exact point in time. That test failed 10
out of the last 67 times on test.winehq.org because
IMediaSeeking_GetCurrentPosition returned a time that was 1 millisecond
after the stop time. To make the test pass consistently, clamp the
current time to the stop time.
- - - - -
1 changed file:
- dlls/quartz/filtergraph.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/d211b69528e19644fe6df2d650e103…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/d211b69528e19644fe6df2d650e103…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
d84dac71 by Nikolay Sivov at 2025-05-05T16:26:25-05:00
windowscodecs: Fix information strings for the Ico decoder.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
bfc88c5f by Nikolay Sivov at 2025-05-05T16:26:25-05:00
windowscodecs: Fix information strings for the Jpeg decoder.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
e330ee8b by Nikolay Sivov at 2025-05-05T16:26:25-05:00
windowscodecs: Fix information strings for the Tiff decoder.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
2 changed files:
- dlls/windowscodecs/regsvr.c
- dlls/windowscodecs/tests/info.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/8c3afe40d75dc12c36ff336478ec1…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/8c3afe40d75dc12c36ff336478ec1…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
1133d6b8 by Nikolay Sivov at 2025-05-05T16:26:25-05:00
windowscodecs/tests: Add a test for 24bpp TIFF with separate sample planes.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
8c3afe40 by Nikolay Sivov at 2025-05-05T16:26:25-05:00
windowscodecs/tiff: Add support for files with separate planes.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
2 changed files:
- dlls/windowscodecs/libtiff.c
- dlls/windowscodecs/tests/tiffformat.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6bafa6c939a246139ceb921a8bda7…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6bafa6c939a246139ceb921a8bda7…
You're receiving this email because of your account on gitlab.winehq.org.