0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/src/Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs
2023-04-27 23:51:14 +02:00

10 lines
210 B
C#

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