Alexandre Julliard pushed to branch master at wine / wine
Commits:
5c729722 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Fix an sprintf() deprecation warning.
- - - - -
8ba6c279 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Use CGDirectDisplayID in macdrv_get_monitors() and struct macdrv_adapter.
- - - - -
71430524 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Have convert_display_rect() return a CGRect.
- - - - -
968e57c1 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Stop using struct macdrv_display in macdrv_set_display_mode().
- - - - -
51909a77 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Stop using macdrv_get_displays() in macdrv_get_monitors().
- - - - -
547b2ca7 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Stop using macdrv_get_displays() in UpdateDisplayDevices().
- - - - -
1abff756 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Stop using macdrv_get_displays() in ChangeDisplaySettings(), GetDeviceGammaRamp(), SetDeviceGammaRamp().
- - - - -
ba986712 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Stop using macdrv_get_displays() in init_original_display_mode().
- - - - -
5c874154 by Brendan Shanks at 2025-11-14T11:18:19+01:00
winemac: Remove macdrv_get_displays().
- - - - -
4 changed files:
- dlls/winemac.drv/cocoa_app.m
- dlls/winemac.drv/cocoa_display.m
- dlls/winemac.drv/display.c
- dlls/winemac.drv/macdrv_cocoa.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6078a245596bc5f4b3607993af1ef…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6078a245596bc5f4b3607993af1ef…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
1fc91559 by Jiajin Cui at 2025-11-14T11:17:06+01:00
wow64win: Change parameter types from LONG to ULONG in wow64_NtUserMessageCall.
Change wparam and lparam parameter types from LONG to ULONG in
wow64_NtUserMessageCall function to match the expected data types from
the get_ulong function. The get_ulong function returns unsigned 32-
bit values, so using ULONG type ensures proper type compatibility
and prevents potential sign extension issues when handling message
parameters in 64-bit Windows emulation.
When a 32-bit program sets the IMAGE_FILE_LARGE_ADDRESS_AWARE flag,
lparam may be an address exceeding 2GB, such as 0x8defddef. If using
ULONG to receive it, due to sign extension, the address becomes
0xffffffff8defddef, causing exceptions during subsequent address access.
Signed-off-by: Jiajin Cui <cuijiajin(a)uniontech.com>
- - - - -
1 changed file:
- dlls/wow64win/user.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/1fc91559227d4f07eedf3d965c81e0…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/1fc91559227d4f07eedf3d965c81e0…
You're receiving this email because of your account on gitlab.winehq.org.
Elizabeth Figura pushed to branch master at wine / wine-staging
Commits:
2bf94fc8 by Elizabeth Figura at 2025-11-13T15:54:44-06:00
Rebase against 76e7e90c3679766ac327b138e3269fb61ead6e4a.
- - - - -
5 changed files:
- − patches/ntdll-Junction_Points/0004-ntdll-Add-support-for-testing-for-reparse-points-wit.patch
- − patches/ntdll-Junction_Points/0005-server-Implement-FILE_OPEN_REPARSE_POINT-option.patch
- − patches/ntdll-Junction_Points/0018-ntdll-Add-support-for-FileAttributeTagInformation.patch
- patches/ntdll-NtDevicePath/0001-ntdll-Implement-opening-files-through-nt-device-path.patch
- staging/upstream-commit
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/commit/2bf94fc85bf9aa6dbd70c0…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/commit/2bf94fc85bf9aa6dbd70c0…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
af96ab5b by Matteo Bruni at 2025-11-13T22:21:21+01:00
wined3d: Conditionally update saved window state in fullscreen mode.
- - - - -
4eda9007 by Matteo Bruni at 2025-11-13T22:21:21+01:00
dxgi/tests: Use test contexts in test_resize_target().
- - - - -
904b98e6 by Elizabeth Figura at 2025-11-13T22:21:21+01:00
dxgi/tests: Use an explicit todo flag for checking window style.
The following patch includes some tests that don't fit the current condition.
- - - - -
18b79f49 by Matteo Bruni at 2025-11-13T22:21:22+01:00
dxgi/tests: Test window states tracking and restoration in fullscreen mode.
- - - - -
2 changed files:
- dlls/dxgi/tests/dxgi.c
- dlls/wined3d/swapchain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/079f26eab087b7f19fb6bde00e985…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/079f26eab087b7f19fb6bde00e985…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
fc4e8221 by Bernhard Übelacker at 2025-11-13T22:21:21+01:00
d3d8/tests: Increase size of quad array to avoid buffer overflow (ASan).
Inside `d3d8_device_DrawPrimitiveUP`,
with primitive_type D3DPT_TRIANGLELIST,
the buffer is expected to have a size of `primitive_count * 3 * stride`.
- - - - -
cfab0b91 by Bernhard Übelacker at 2025-11-13T22:21:21+01:00
d3d9/tests: Increase size of quad array to avoid buffer overflow (ASan).
Inside `d3d9_device_DrawPrimitiveUP`,
with primitive_type D3DPT_TRIANGLELIST,
the buffer is expected to have a size of `primitive_count * 3 * stride`.
- - - - -
2 changed files:
- dlls/d3d8/tests/device.c
- dlls/d3d9/tests/device.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e6098f6a071974cf527dddbdb78cf…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e6098f6a071974cf527dddbdb78cf…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
c7f55393 by Giovanni Mascellani at 2025-11-13T22:21:21+01:00
dxgi/tests: Add test context for D3D10 and D3D12 tests.
- - - - -
93fe151c by Giovanni Mascellani at 2025-11-13T22:21:21+01:00
dxgi/tests: Test the frame latency waitable on D3D10 too.
- - - - -
923b228f by Giovanni Mascellani at 2025-11-13T22:21:21+01:00
dxgi/tests: Test the compatibility between the swapchain effect and the latency waitable.
- - - - -
0d43c1b0 by Giovanni Mascellani at 2025-11-13T22:21:21+01:00
dxgi: Do not allow the frame latency waitable for non-flip swap effects.
- - - - -
0e35373f by Giovanni Mascellani at 2025-11-13T22:21:21+01:00
dxgi/tests: Test present count for D3D10, flip discard and no latency waitable.
- - - - -
e6098f6a by Giovanni Mascellani at 2025-11-13T22:21:21+01:00
dxgi/tests: Test present count for D3D10, flip discard and latency waitable.
- - - - -
2 changed files:
- dlls/dxgi/tests/dxgi.c
- dlls/dxgi/utils.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/874bb80ef9b1a6b41b03cb8a62ed3…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/874bb80ef9b1a6b41b03cb8a62ed3…
You're receiving this email because of your account on gitlab.winehq.org.