mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-17 04:31:30 +00:00
13 lines
280 B
C#
13 lines
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,
|
|
}
|
|
} |