aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ActionCommand.cs
blob: 07e55c96966d380ea42fcd4577541010b46f5c75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Ryujinx.Graphics.GAL.Multithreading.Model;
using System;

namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Renderer
{
    struct ActionCommand : IGALCommand
    {
        public CommandType CommandType => CommandType.Action;
        private TableRef<Action> _action;

        public void Set(TableRef<Action> action)
        {
            _action = action;
        }

        public static void Run(ref ActionCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            command._action.Get(threaded)();
        }
    }
}