Ryujinx/Ryujinx.Graphics.Vulkan/Queries
riperiperi 6e9bd4de13
GPU: Scale counter results before addition (#4471)
* GPU: Scale counter results before addition

Counter results were being scaled on ReportCounter, which meant that the _total_ value of the counter was being scaled. Not only could this result in very large numbers and weird overflows if the game doesn't clear the counter, but it also caused the result to change drastically.

This PR changes scaling to be done when the value is added to the counter on the backend. This should evaluate the scale at the same time as before, on report counter, but avoiding the issue with scaling the total.

Fixes scaling in Warioware, at least in the demo, where it seems to compare old/new counters and broke down when scaling was enabled.

* Fix issues when result is partially uploaded.

Drivers tend to write the low half first, then the high half. Retry if the high half is FFFFFFFF.
2023-03-12 18:01:15 +01:00
..
BufferedQuery.cs GPU: Scale counter results before addition (#4471) 2023-03-12 18:01:15 +01:00
CounterQueue.cs GPU: Scale counter results before addition (#4471) 2023-03-12 18:01:15 +01:00
CounterQueueEvent.cs GPU: Scale counter results before addition (#4471) 2023-03-12 18:01:15 +01:00
Counters.cs Misc performance tweaks (#4509) 2023-03-11 17:05:48 -03:00