This will be required for MFT decoder transforms to work. They don't usually produce an output sample on every pushed input sample, and the session may need to request more sample from upstream and push them into the transform or it will not get any output and get stuck.
--
v2: mf/session: Request more data from upstream when requests are still pending.
mf/session: Process pending transform nodes samples in a loop.
mf/session: Move transform node ProcessInput calls to a separate helper.
mf/session: Use helpers to push and pop samples for transform streams.
mf/session: Use local variables to access transform node streams.
https://gitlab.winehq.org/wine/wine/-/merge_requests/3004
Reset the valuse of bNoItemMetrics to TRUE in LISTVIEW_DeleteAllItems() to Fix
"2345 picture viewer" not displaying all files.
Signed-off-by: Zhao Yi <zhaoyi(a)uniontech.com>
--
v9: comctl32: Make the correct linkid from fun SYSLINK_LinkAtPt.
https://gitlab.winehq.org/wine/wine/-/merge_requests/2413
Log: The flag that bNoItemMetrics should be reset to TRUE after
calling LISTVIEW_DeleteAllItems().
Signed-off-by: Zhao Yi <zhaoyi(a)uniontech.com>
--
v7: comctl32: Make the correct linkid from fun SYSLINK_LinkAtPt.
https://gitlab.winehq.org/wine/wine/-/merge_requests/2413
Reset the valuse of bNoItemMetrics to TRUE in LISTVIEW_DeleteAllItems() to Fix
"2345 picture viewer" not displaying all files.
Signed-off-by: Zhao Yi <zhaoyi(a)uniontech.com>
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/3113
Java (1.3 at least) calls ChoosePixelFormat() with the PFD_SUPPORT_GDI flag set
and expects the returned PIXELFORMATDESCRIPTOR to have that flag set. If it
doesn't, an exception is thrown and it fails to initialize graphics. If no
PIXELFORMATDESCRIPTOR is returned instead, it falls back to an alternative
rendering method and proceeds further.
Therefore, when the PFD_SUPPORT_GDI flag is specified, treat it as a mandatory
requirement, and only return a PIXELFORMATDESCRIPTOR on which it is set, if
any.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=7767
Closes #7767
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/3111