0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-18 22:21:39 +00:00
ryujinx-fork/Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs
gdkchan e48530e9d9
When waiting on CPU, do not return a time out error from EventWait (#2780)
* When waiting on CPU, do not return a time out error from EventWait

* And while I'm at it...
2021-11-01 19:10:02 -03:00

10 lines
210 B
C#

using System;
namespace Ryujinx.Graphics.Gpu.Synchronization
{
public class SyncpointWaiterHandle
{
internal uint Threshold;
internal Action<SyncpointWaiterHandle> Callback;
}
}