- 04 Jul, 2023 40 commits
-
-
Alex Henrie authored
-
Alex Henrie authored
-
Kevin Schmidt authored
-
Jiajin Cui authored
If the length of wszApplicationName exceeds 1024, it will cause an error when writing to the subsequent stack space after exceeding the wcmd space, Wcmd needs to be modified to dynamic allocation. Signed-off-by: Jiajin Cui <cuijiajin@uniontech.com>
-
Billy Laws authored
-
Billy Laws authored
-
Billy Laws authored
4.18+ Linux kernels remove support for IPX but keep SOL_IPX defined, which causes compilation errors as wine unconditionally uses IPX structures if this is the case. Instead check for IPX_MTU to determine IPX support as it is defined within the ipx.h header itself.
-
Vladislav Timonin authored
-
Vladislav Timonin authored
-
Matteo Bruni authored
And do some mandatory cleanup while at it.
-
Matteo Bruni authored
-
Matteo Bruni authored
-
Matteo Bruni authored
And give a good clean up to the test and all its helpers.
-
Matteo Bruni authored
-
Matteo Bruni authored
-
Matteo Bruni authored
-
Matteo Bruni authored
-
Eric Pouech authored
-
Matteo Bruni authored
Otherwise it fails for me on 32-bit Linux with my current compiler.
-
Zebediah Figura authored
This shouldn't really make a difference, but does make the code a bit conceptually simpler.
-
Zebediah Figura authored
Allocating and freeing fences in particular can be expensive, as much as 250 µs per call (observed on an NVidia machine).
-
Zebediah Figura authored
-
Matteo Bruni authored
Over the last few Wine releases we greatly reduced the need for the application thread to wait for replies from the CS thread. Compared to the time when the command stream was initially introduced, it's now quite likely that, when the command queues become empty, they are going to stay like that for a while (e.g. the game is throttling the framerate or is busy doing some CPU work on its part before generating more commands). As a first step, reduce the spin count to reduce the busy waiting in wined3d_cs_run(). In my tests this significantly reduces CPU usage, with minimally decreased performance in a few rare cases but also significantly improved performance in many cases (notably with integrated GPUs where freeing the CPU directly allows more power to be allocated to the GPU).
-
Matteo Bruni authored
It can't block because there are pending queries.
-
Matteo Bruni authored
Yielding to other threads might help to get new packets and (very slightly) reduce contention on the queue head and tail pointers.
-
Matteo Bruni authored
Avoid busy spinning for a potentially long time.
-
Matteo Bruni authored
With the buffer / texture mapping acceleration bits working properly, we can get many outstanding commands and, to avoid blocking the client thread while waiting for free space, we need a larger queue. 16 MiB was always enough in my testing (8 MiB wasn't in a few cases). Keep a lower limit on 32-bit since we're often times address space-starved there. Tweaked by Zebediah Figura.
-
Giovanni Mascellani authored
This is to eventually hand frontend and backend resource management to different code pieces.
-
Giovanni Mascellani authored
This is to eventually allow d3d12_swapchain_queue_present() to operate on a certain VkImage even if current_buffer_index has already been modified since the corresponding Present() call.
-
Giovanni Mascellani authored
-
Giovanni Mascellani authored
This is an oversight in eec9c3a2: vk_format specifies the format used for the frontend resources. The backend images could use a different format, depending on what the swapchain supports. Also, introduce the terms "frontend" and "backend" for the two sides of the swapchain, which are probably easier to understand.
-
Giovanni Mascellani authored
-
Giovanni Mascellani authored
-
Fabian Maurer authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54978
-
Mohamad Al-Jaf authored
Needed for Revo Scan 5.
-
Mohamad Al-Jaf authored
-
Mohamad Al-Jaf authored
-
Mohamad Al-Jaf authored
-
Mohamad Al-Jaf authored
-
Mohamad Al-Jaf authored
Needed by IBluetoothAdapter in windows.devices.bluetooth.idl.
-