Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
fb5d53bf by Nikolay Sivov at 2025-03-17T14:46:18+01:00
vkd3d-shader/fx: Add a helper to escape printed strings.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
3e864840 by Nikolay Sivov at 2025-03-17T14:46:36+01:00
vkd3d-shader/fx: Read fx_2_0 assignment data outside of its dumping helper.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
36e1a0ce by Nikolay Sivov at 2025-03-17T14:…
[View More]46:36+01:00
vkd3d-shader/fx: Add support for parsing fx_2_0 sampler states.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
fb16ae23 by Nikolay Sivov at 2025-03-17T14:48:12+01:00
vkd3d-shader/fx: Add support for dumping fx_2_0 shader blobs.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
ff759117 by Nikolay Sivov at 2025-03-17T14:54:26+01:00
vkd3d-shader/fx: Dump complex state value blobs for fx_2_0.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
ba798903 by Nikolay Sivov at 2025-03-17T15:05:14+01:00
vkd3d-shader/fx: Support dumping parameter and array selector assignments for fx_2_0.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
4 changed files:
- libs/vkd3d-shader/fx.c
- libs/vkd3d-shader/spirv.c
- libs/vkd3d-shader/vkd3d_shader_main.c
- libs/vkd3d-shader/vkd3d_shader_private.h
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/fc4316f664bac6b18c64def5a49b…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/fc4316f664bac6b18c64def5a49b…
You're receiving this email because of your account on gitlab.winehq.org.
[View Less]
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
0b273ea8 by Giovanni Mascellani at 2025-03-17T13:50:19+01:00
tests: Store the compiler string in the shader runner capabilities.
Just like the executor.
- - - - -
fc4316f6 by Giovanni Mascellani at 2025-03-17T14:01:22+01:00
tests/shader_runner: Avoid creating devices for backends that won't execute.
My main motivation to this is avoiding generating a lot of useless
log lines from other executors when I'm interested in just one …
[View More]of
them, but I can imagine this also somewhat improving efficiency.
- - - - -
8 changed files:
- tests/shader_runner.c
- tests/shader_runner.h
- tests/shader_runner_d3d11.c
- tests/shader_runner_d3d12.c
- tests/shader_runner_d3d9.c
- tests/shader_runner_gl.c
- tests/shader_runner_metal.m
- tests/shader_runner_vulkan.c
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/a4f58be00c58e06b5bd60bec7eb9…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/a4f58be00c58e06b5bd60bec7eb9…
You're receiving this email because of your account on gitlab.winehq.org.
[View Less]
Alexandre Julliard pushed to branch master at wine / wine
Commits:
7ef95229 by Paul Gofman at 2025-03-14T21:27:35+01:00
ntdll: Properly set context control registers from the other thread on wow64.
- - - - -
2c7b47ee by Paul Gofman at 2025-03-14T21:27:35+01:00
ntdll/tests: Test first trap address when setting trap flag in various ways.
- - - - -
50481d06 by Paul Gofman at 2025-03-14T21:27:35+01:00
ntdll: Fix setting trap flag with CONTEXT_CONTROL and instrumentation callback on x64.
- - - -…
[View More] -
d2085b76 by Paul Gofman at 2025-03-14T21:27:35+01:00
ntdll: Set CONTEXT_CONTROL frame restore flag in sigsys_handler().
- - - - -
2 changed files:
- dlls/ntdll/tests/exception.c
- dlls/ntdll/unix/signal_x86_64.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c36cbd9da96f9dc1f9acef9222f3f…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c36cbd9da96f9dc1f9acef9222f3f…
You're receiving this email because of your account on gitlab.winehq.org.
[View Less]
Alexandre Julliard pushed to branch master at wine / wine
Commits:
df340b2e by Eric Pouech at 2025-03-14T21:26:16+01:00
dbghelp: Fix potential crash for old debug formats.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
93e62320 by Eric Pouech at 2025-03-14T21:26:16+01:00
dbghelp: Support large PDB files (> 4G).
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
3721a903 by Eric Pouech at 2025-03-14T21:26:16+01:00
dbghelp: Store pointer to …
[View More]context instead of context.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
5c54087c by Eric Pouech at 2025-03-14T21:26:16+01:00
dbghelp: Optimize vector allocation.
Introduce a new model for vector allocation:
- No longer requiring initial size (using a pure quadratic
growth),
- No longer providing stability of element address across
add operations.
This allows some reduction in memory usage.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
c36cbd9d by Eric Pouech at 2025-03-14T21:26:18+01:00
dbghelp: Simplify get_line_from_addr().
We can't (no longer) get inlined functions here.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
7 changed files:
- dlls/dbghelp/dbghelp_private.h
- dlls/dbghelp/dwarf.c
- dlls/dbghelp/module.c
- dlls/dbghelp/msc.c
- dlls/dbghelp/storage.c
- dlls/dbghelp/symbol.c
- dlls/dbghelp/type.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/4cd3eb3585a44ad6e348011f15810…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/4cd3eb3585a44ad6e348011f15810…
You're receiving this email because of your account on gitlab.winehq.org.
[View Less]
Alexandre Julliard pushed to branch master at wine / wine
Commits:
f94488b8 by Vibhav Pant at 2025-03-14T20:47:48+01:00
winebth.sys: Remove the first 2 zero bytes after byte-swapping Bluetooth addresses.
A Bluetooth address consists of 6 bytes, while a BTH_ADDR is 8 bytes.
- - - - -
b528ee09 by Vibhav Pant at 2025-03-14T20:47:50+01:00
winebth.sys: Implement IOCTL_WINEBTH_RADIO_START_DISCOVERY.
- - - - -
d6864438 by Vibhav Pant at 2025-03-14T20:47:52+01:00
winebth.sys: Implement …
[View More]IOCTL_WINEBTH_RADIO_STOP_DISCOVERY.
- - - - -
6fb5e3a3 by Vibhav Pant at 2025-03-14T20:47:54+01:00
bluetoothapis: Implement BluetoothFindFirstDevice and BluetoothFindDeviceClose.
- - - - -
15ed5869 by Vibhav Pant at 2025-03-14T20:47:54+01:00
bluetoothapis/tests: Add tests for BluetoothFindFirstDevice, BluetoothFindDeviceClose.
- - - - -
ffdae50d by Vibhav Pant at 2025-03-14T20:47:54+01:00
bluetoothapis: Implement BluetoothFindNextDevice.
- - - - -
4cd3eb35 by Vibhav Pant at 2025-03-14T20:47:54+01:00
bluetoothapis/tests: Add tests for BluetoothFindNextDevice.
- - - - -
11 changed files:
- dlls/bluetoothapis/main.c
- dlls/bluetoothapis/tests/Makefile.in
- + dlls/bluetoothapis/tests/device.c
- dlls/winebth.sys/dbus.c
- dlls/winebth.sys/unixlib.c
- dlls/winebth.sys/unixlib.h
- dlls/winebth.sys/unixlib_priv.h
- dlls/winebth.sys/winebluetooth.c
- dlls/winebth.sys/winebth.c
- dlls/winebth.sys/winebth_priv.h
- include/wine/winebth.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5d7db9a718463436dc51848375434…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5d7db9a718463436dc51848375434…
You're receiving this email because of your account on gitlab.winehq.org.
[View Less]
Alexandre Julliard pushed to branch master at wine / wine
Commits:
9250d0cc by Elizabeth Figura at 2025-03-14T19:10:30+01:00
advapi32: Move SystemFunction032 to cryptsp.
- - - - -
f651326d by Elizabeth Figura at 2025-03-14T19:10:32+01:00
advapi32: Move lmhash functions to cryptsp.
- - - - -
de1fff89 by Elizabeth Figura at 2025-03-14T19:10:33+01:00
advapi32: Merge crypt_lmhash.c into crypt_des.c.
- - - - -
f507e386 by Elizabeth Figura at 2025-03-14T19:10:34+01:00
advapi32: Move the …
[View More]remaining SystemFunction* functions to cryptsp.
- - - - -
fa602d79 by Elizabeth Figura at 2025-03-14T19:10:36+01:00
advapi32: Move DES functions to cryptbase.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57962
- - - - -
09c93209 by Elizabeth Figura at 2025-03-14T19:10:39+01:00
advapi32: Move the remaining SystemFunction* functions to cryptbase.
- - - - -
17 changed files:
- configure
- configure.ac
- dlls/advapi32/Makefile.in
- dlls/advapi32/advapi32.spec
- dlls/advapi32/crypt.c
- dlls/advapi32/crypt.h
- − dlls/advapi32/crypt_lmhash.c
- + dlls/cryptbase/Makefile.in
- + dlls/cryptbase/cryptbase.spec
- + dlls/cryptbase/cryptbase_main.c
- dlls/advapi32/crypt_des.c → dlls/cryptbase/des.c
- dlls/cryptsp/Makefile.in
- dlls/advapi32/crypt_arc4.c → dlls/cryptsp/arc4.c
- + dlls/cryptsp/crypt.c
- dlls/cryptsp/cryptsp.spec
- + dlls/cryptsp/lmhash.c
- tools/make_specfiles
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c5282d33b1125d86e9b457cbff887…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c5282d33b1125d86e9b457cbff887…
You're receiving this email because of your account on gitlab.winehq.org.
[View Less]
Alexandre Julliard pushed to branch master at wine / wine
Commits:
5030e3d3 by Alexandre Julliard at 2025-03-14T16:56:55+01:00
user32: Add some more stubs for ordinal functions that forward to win32u.
- - - - -
cf31a66a by Alexandre Julliard at 2025-03-14T16:56:55+01:00
server: Consistently use size_t for page sizes.
- - - - -
04b09419 by Alexandre Julliard at 2025-03-14T16:56:55+01:00
server: Compute the size of the PE header that can be mapped.
- - - - -
04af102c by Alexandre Julliard at …
[View More]2025-03-14T17:35:23+01:00
ntdll: Only copy the PE section data to a separate block when necessary.
- - - - -
10 changed files:
- dlls/ntdll/unix/virtual.c
- dlls/user32/user32.spec
- include/wine/server_protocol.h
- server/file.h
- server/mach.c
- server/mapping.c
- server/protocol.def
- server/ptrace.c
- server/request_handlers.h
- tools/make_requests
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/da2b1867e33f05be5cc05a9599c2f…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/da2b1867e33f05be5cc05a9599c2f…
You're receiving this email because of your account on gitlab.winehq.org.
[View Less]