Alexandre Julliard pushed to branch master at wine / wine
Commits:
2362830a by Dmitry Timoshkov at 2025-10-02T21:41:10+02:00
d2d1: Implement D2D1CreateDeviceContext().
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
3b0e830f by Dmitry Timoshkov at 2025-10-02T21:41:10+02:00
d2d1: Add a test for D2D1CreateDeviceContext().
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
4 changed files:
- dlls/d2d1/d2d1.spec
- dlls/d2d1/factory.c
- dlls/d2d1/tests/d2d1.c
- include/d2d1_1.idl
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f7f6f31a04855ff5648d6055642e7…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f7f6f31a04855ff5648d6055642e7…
You're receiving this email because of your account on gitlab.winehq.org.
Elizabeth Figura pushed to branch master at wine / wine-staging
Commits:
9c06e8ea by Elizabeth Figura at 2025-10-01T16:58:46-05:00
Rebase against 192d335facd5ec6ff2b9acec615efff16385a416.
- - - - -
8 changed files:
- − patches/ddraw-Device_Caps/0002-ddraw-Set-dwZBufferBitDepth-in-ddraw7_GetCaps.patch
- − patches/ddraw-Device_Caps/definition
- patches/ddraw-version-check/definition
- patches/server-PeekMessage/0001-server-Fix-handling-of-GetMessage-after-previous-Pee.patch
- patches/server-Signal_Thread/0001-server-Do-not-signal-thread-until-it-is-really-gone.patch
- − patches/wineboot-HKEY_DYN_DATA/0001-wineboot-Add-some-generic-hardware-in-HKEY_DYN_DATA-.patch
- − patches/wineboot-HKEY_DYN_DATA/definition
- staging/upstream-commit
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/commit/9c06e8eab3af4a4c57d669…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/commit/9c06e8eab3af4a4c57d669…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
fc4cb218 by Eric Pouech at 2025-10-01T23:02:39+02:00
winedbg: Simplify fetching module name.
Always using GetMappedFileNameW for active targets:
- as it doesn't depend on information from debug event that
are not always present (pointer to module name, or file handle),
- it only uses a single server call (pointer to module name requires two).
- and stop using GetModuleFileNameExW which implementation walks
the module list in debuggee process, hence request time grows linearly
with number of loaded modules.
Keep fallback to indirection in debuggee address space for non active
targets.
This reduces significantly attachment time in auto mode.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
dda9f35c by Eric Pouech at 2025-10-01T23:02:39+02:00
dbghelp: Add public symbols out of export table when no debug info is present.
Always creating public symbols from export table can be slow.
If we already have some debug information, then exported symbols are
likely already present.
In extreme cases, this can reduce significantly loading time of module.
Note: in some (rare) cases, this will change current behavior:
- if symbol has no debug inforamtion attached to it (assembly...), then
no name will be available for it,
- if exported symbol name is different from internal one, then only the
internal one will be reported.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
192d335f by Eric Pouech at 2025-10-01T23:02:39+02:00
dbghelp: Don't crash on stripped image without DEBUG directories.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58742
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
2 changed files:
- dlls/dbghelp/pe_module.c
- programs/winedbg/tgt_active.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/24d6b2b33a83fecbc82b32cc262aa…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/24d6b2b33a83fecbc82b32cc262aa…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
8e2ff32a by Eric Pouech at 2025-10-01T21:42:08+02:00
cmd: Add tests showing that MORE outputs to CONOUT$ not stdout.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
d9430e7d by Eric Pouech at 2025-10-01T21:42:10+02:00
cmd: Clean up and enhance MORE command implementation.
Clean-up:
- using WCMD_fgets() to get input,
- using helper to factorize the two forms of the MORE command.
Enhancements and let behavior be closer to native:
- when using 'MORE file1 file2...', stop displaying files at
the first non existing one,
- can break MORE with ctrl-c,
- the information display + wait at the end of each page is
only activated when outputting to console,
- the bottom information line is overwritten by next line.
Note native MORE outputs to CONOUT$ (not stdout), which
makes it hard for adding tests.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
735b5066 by Eric Pouech at 2025-10-01T21:42:12+02:00
cmd: Let WCMD_setshow_time() use WCMD_fgets().
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
eca768dc by Eric Pouech at 2025-10-01T21:42:13+02:00
cmd: Let WCMD_wait_for_input() no longer use WCMD_ReadFile().
With some improvements:
- waiting on an input stream can be interrupted by ctrl-c,
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
d2024356 by Eric Pouech at 2025-10-01T21:42:16+02:00
cmd: Get rid of WCMD_ReadFile.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
7 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/wcmd.h
- programs/cmd/wcmdmain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b2abca6043ca64de47fea8d8273ef…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b2abca6043ca64de47fea8d8273ef…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
ef7381dd by Nikolay Sivov at 2025-10-01T21:39:20+02:00
xmllite/writer: Remove now unnecessary helper.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
304caf26 by Nikolay Sivov at 2025-10-01T21:39:21+02:00
xmllite/writer: Output element stack on release.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
709931d9 by Nikolay Sivov at 2025-10-01T21:39:22+02:00
xmllite/writer: Output element stack on SetOutput().
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
2 changed files:
- dlls/xmllite/tests/writer.c
- dlls/xmllite/writer.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/adb6c9fd21f7c986e6b66675bdb58…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/adb6c9fd21f7c986e6b66675bdb58…
You're receiving this email because of your account on gitlab.winehq.org.