- 15 Jul, 2022 6 commits
-
-
Zhiyi Zhang authored
10 DLUs is the recommended height for check boxes on Windows. 8 DLUs is not enough and may cause shrinking in HiDPI settings. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Zhiyi Zhang authored
10 DLUs is the recommended height for check boxes on Windows. 8 DLUs is not enough and may cause shrinking in HiDPI settings. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Zhiyi Zhang authored
The destination rectangle may be smaller than that of theme parts, in which case, the draw size returned is adjusted to fit the destination rectangle. Without passing a destination rectangle to GetThemePartSize(), the function assumes that there is no limit for destination. This fixes winecfg check boxes missing the upper edge in 192 DPI. You may notice that the check box bitmap is slightly shrank and so the shape is a bit off. However, this is what happens on Windows as well when check box height is set to 8 DLUs. GetThemePartSize() without destination rectangles are also used in other controls, but manual tests showed that those controls don't shrink their theme background as check boxes do so they are left unchanged. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Zebediah Figura authored
-
Zebediah Figura authored
It's already set previously in sock_poll_event(). Moreover, complete_async_connect() will not always be called.
-
Zebediah Figura authored
-
- 14 Jul, 2022 18 commits
-
-
Hans Leidekker authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53344
-
Zhiyi Zhang authored
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Georg Lehmann authored
Signed-off-by: Georg Lehmann <dadschoorse@gmail.com>
-
Jeremy White authored
The gitlab scripts operate without access to the wine tree. Requiring a trailing slash on patterns simplifies the logic to automatically assign reviewers to MRs.
-
Zhiyi Zhang authored
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Jinoh Kang authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53289Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Zebediah Figura authored
-
Zebediah Figura authored
send_socket does some extra bookkeeping that's currently missing from the register_async path. Instead of adding it to sock_queue_async(), let's just centralize all send requests so that they go through send_socket.
-
Zebediah Figura authored
recv_socket does some extra bookkeeping that's currently missing from the register_async path. Instead of adding it to sock_queue_async(), let's just centralize all recv requests so that they go through recv_socket.
-
Zebediah Figura authored
-
Zebediah Figura authored
Besides being unnecessary, this triggers a bug in radeonsi (since fixed upstream), which can cause failures in d3d10core and d3d11 tests.
-
Zebediah Figura authored
-
Zebediah Figura authored
-
Zebediah Figura authored
I believe this was a mistake introduced by 831ff102. This fixes GL errors with multiple applications, including Ragnarok Online and Bloodrayne: Terminal Cut.
-
Zebediah Figura authored
If we subsequently try to destroy it we will decrease the chunk map_count again, which is a reference counting error.
-
Zebediah Figura authored
wined3d: Trace the chunk pointer instead of the GL buffer ID in wined3d_device_gl_allocate_memory().
-
- 13 Jul, 2022 16 commits
-
-
Gabriel Ivăncescu authored
Rather than hacking a custom prop. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
We have to special case empty string since Gecko special cases them, but IE does not. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Jan Sikorski authored
Vulkan pipelines should be destroyed only after the last command buffer using the pipeline is done executing. Since we do not track which pipelines are encoded into which command buffers, defer destruction until the current command buffer finishes. Signed-off-by: Jan Sikorski <jsikorski@codeweavers.com>
-
Torge Matthies authored
Signed-off-by: Torge Matthies <tmatthies@codeweavers.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Jinoh Kang authored
Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
Zhiyi Zhang authored
Sometimes error event serial is zero. For example, NVIDIA driver may send X_GLXCopyContext errors with the event serial set to zero. When it's zero, previously the error handler passes the error to the default error handler and cause application crashes. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Zhiyi Zhang authored
If the display is not locked, another thread could take the error event and handle it with the default error handlers and thus not handled by the current thread with the specified error handlers. Fix Cladun X2 crash at start. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-