Alexandre Julliard pushed to branch master at wine / wine
Commits:
adb16ae7 by Piotr Caban at 2025-11-24T22:05:06+01:00
include: Add IRowsetView interface.
- - - - -
60489546 by Piotr Caban at 2025-11-24T22:05:06+01:00
include: Add IViewChapter interface.
- - - - -
d4a9c37f by Piotr Caban at 2025-11-24T22:05:06+01:00
include: Add IViewFilter interface.
- - - - -
6 changed files:
- dlls/msdaps/usrmarshal.c
- include/Makefile.in
- include/oledb.idl
- + include/rstvw.idl
- + include/vwchp.idl
- + include/vwflt.idl
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/50d0483a778cb8313650b6c1e23d4…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/50d0483a778cb8313650b6c1e23d4…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
b6d77865 by Anton Baskanov at 2025-11-24T22:05:06+01:00
dmusic: Fix data size calculation in wave_create_from_soundfont().
- - - - -
e9ae14f9 by Anton Baskanov at 2025-11-24T22:05:06+01:00
dmusic: Remove the unused loop_resent field from struct region.
- - - - -
33ec5268 by Anton Baskanov at 2025-11-24T22:05:06+01:00
dmusic: Determine sample loop type from SF_GEN_SAMPLE_MODES.
- - - - -
58e41362 by Anton Baskanov at 2025-11-24T22:05:06+01:00
dmusic: Treat SF_GEN_(START|END)LOOP_ADDRS_OFFSET as offsets from the sample loop points.
- - - - -
2aab48fc by Anton Baskanov at 2025-11-24T22:05:06+01:00
dmusic: Take coarse loop offsets into account.
- - - - -
50d0483a by Anton Baskanov at 2025-11-24T22:05:06+01:00
dmusic: Compare unity note with an unsigned 16-bit constant.
- - - - -
3 changed files:
- dlls/dmusic/instrument.c
- dlls/dmusic/soundfont.h
- dlls/dmusic/wave.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/4f29040ae940f7ba7fa04667fc7e1…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/4f29040ae940f7ba7fa04667fc7e1…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
1a7b97ea by Piotr Caban at 2025-11-24T22:05:06+01:00
msado15: Change data type used for fetching longer bookmarks.
- - - - -
059746d4 by Piotr Caban at 2025-11-24T22:05:06+01:00
msado15: Add INT_PTR bookmark type.
- - - - -
4f29040a by Piotr Caban at 2025-11-24T22:05:06+01:00
msado15: Store data in column format in memory rowset provider.
- - - - -
3 changed files:
- dlls/msado15/recordset.c
- dlls/msado15/rowset.c
- dlls/msado15/tests/msado15.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b33abe1b59a22f01deedded57f936…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b33abe1b59a22f01deedded57f936…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
0d6ab540 by Bernhard Übelacker at 2025-11-24T11:20:15+01:00
shell32: Avoid double-free in enumerate_strings when cur is zero (ASan).
If this realloc is reached and cur is zero, the realloc is called
with a size of zero, which behaves like a free.
And returns NULL, because of which the fail: label is reached,
where the memory, strs is still pointing to, is freed the second time.
- - - - -
1 changed file:
- dlls/shell32/autocomplete.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/0d6ab540776ef264101603febbe1b8…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/0d6ab540776ef264101603febbe1b8…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
325b5667 by Elizabeth Figura at 2025-11-24T11:19:31+01:00
winex11: Flush after presenting.
The following cause an image to be immediately visible on Windows:
* Direct3D Present()
* wglSwapBuffers() [after drawing to the back buffer]
* glFlush() [after drawing to the front buffer. Note that glFlush() is both
necessary and sufficient.]
* vkQueuePresent()
This is all of the paths that ultimately call client_surface_present().
In order to ensure that pixels are immediately visible on Wine as well, we need
to flush immediately after presenting.
Based on a patch by Henri Verbeet.
- - - - -
1 changed file:
- dlls/winex11.drv/init.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/325b566789317da271d19bd128d7e0…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/325b566789317da271d19bd128d7e0…
You're receiving this email because of your account on gitlab.winehq.org.