aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs
blob: 3ad3446f788913f02b54a97b2b986bbc560319ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Ryujinx.Graphics.Gpu.Engine.MME
{
    /// <summary>
    /// GPU Macro assignment operation.
    /// </summary>
    enum AssignmentOperation
    {
        IgnoreAndFetch = 0,
        Move = 1,
        MoveAndSetMaddr = 2,
        FetchAndSend = 3,
        MoveAndSend = 4,
        FetchAndSetMaddr = 5,
        MoveAndSetMaddrThenFetchAndSend = 6,
        MoveAndSetMaddrThenSendHigh = 7,
    }
}