Ryujinx/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

11 lines
210 B
C#

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