mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-27 17:07:43 +02:00

* 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;
|
|
}
|
|
}
|