Ryujinx-git/src/Ryujinx.Graphics.Gpu/Engine/SetMmeShadowRamControlMode.cs
2023-04-27 23:51:14 +02:00

13 lines
No EOL
280 B
C#

namespace Ryujinx.Graphics.Gpu.Engine
{
/// <summary>
/// MME shadow RAM control mode.
/// </summary>
enum SetMmeShadowRamControlMode
{
MethodTrack = 0,
MethodTrackWithFilter = 1,
MethodPassthrough = 2,
MethodReplay = 3,
}
}