mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-15 05:27:42 -07:00
e48530e9d9
* When waiting on CPU, do not return a time out error from EventWait * And while I'm at it...
11 lines
210 B
C#
11 lines
210 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Synchronization
|
|
{
|
|
public class SyncpointWaiterHandle
|
|
{
|
|
internal uint Threshold;
|
|
internal Action<SyncpointWaiterHandle> Callback;
|
|
}
|
|
}
|