e48530e9d9
* When waiting on CPU, do not return a time out error from EventWait * And while I'm at it...
10 lines
210 B
C#
10 lines
210 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Synchronization
|
|
{
|
|
public class SyncpointWaiterHandle
|
|
{
|
|
internal uint Threshold;
|
|
internal Action<SyncpointWaiterHandle> Callback;
|
|
}
|
|
}
|