Stop changing their attributes in place. This is complex, somewhat brittle, and
currently broken for the Vulkan backend.
Restrict wined3d_texture_update_desc() to changing user memory and pitch.
--
v3:
https://gitlab.winehq.org/wine/wine/-/merge_requests/2535
On Mon Apr 17 05:52:45 2023 +0000, Biswapriyo Nath wrote:
> Yes, all the IDL files are updated wrt. wine.
It's likely the generated header is the cause of the issue. Specifically, it should define the enums prior to their use. So it looks like an issue with WIDL. I'm not sure if this is something that Wine would support, but you can try asking in wine-devel, the IRC chat, or just open a wine-bug for it.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/2595#note_30316
Fixes an issue where a window's image would be stretched as it was moved
further offscreen.
The offscreen part of a window also did not display correctly in Exposé.
--
v2: winemac: Don't constrain surface dimensions to the onscreen part of a window.
winemac: Set the Cocoa window contentMaxSize to the size limits from constrain_window_frame().
winemac: Refactor constrain_window_frame() to use separate origin and size arguments.
https://gitlab.winehq.org/wine/wine/-/merge_requests/2543
Sorry for the delay.
This works but it looks fragile. I haven't actually checked, but is there any other way that the same async can be terminated twice? If so, is it correct to buffer the second termination (and not, say, buffer a third?) If not, should we make this explicitly a boolean flag ('canceled' I guess?) Or at least add some asserts to communicate exactly when this is supposed to happen?
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/499#note_30310
--
v2: kernelbase: Implement activation context switching for fibers.
ntdll: Implement RtlFreeActivationContextStack().
ntdll: Use ActivationContextStackPointer instead of referencing ActivationContextStack directly.
ntdll: Store current activation context stack pointer into a local variable.
ntdll: Factor out reading current activation context into a helper function.
kernel32/tests: Test for activation context switching between fibers.
https://gitlab.winehq.org/wine/wine/-/merge_requests/2435