aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetIndexBufferCommand.cs
blob: 6a06ab9b3185a89bb7eddb8492c4ec131bed6be1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct SetIndexBufferCommand : IGALCommand, IGALCommand<SetIndexBufferCommand>
    {
        public readonly CommandType CommandType => CommandType.SetIndexBuffer;
        private BufferRange _buffer;
        private IndexType _type;

        public void Set(BufferRange buffer, IndexType type)
        {
            _buffer = buffer;
            _type = type;
        }

        public static void Run(ref SetIndexBufferCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            BufferRange range = threaded.Buffers.MapBufferRange(command._buffer);
            renderer.Pipeline.SetIndexBuffer(range, command._type);
        }
    }
}