aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedTextureArray.cs
blob: 4334c70484a3a795cb67d3850da1fb5768e86976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using Ryujinx.Graphics.GAL.Multithreading.Commands.TextureArray;
using Ryujinx.Graphics.GAL.Multithreading.Model;
using System.Linq;

namespace Ryujinx.Graphics.GAL.Multithreading.Resources
{
    /// <summary>
    /// Threaded representation of a texture and sampler array.
    /// </summary>
    class ThreadedTextureArray : ITextureArray
    {
        private readonly ThreadedRenderer _renderer;
        public ITextureArray Base;

        public ThreadedTextureArray(ThreadedRenderer renderer)
        {
            _renderer = renderer;
        }

        private TableRef<T> Ref<T>(T reference)
        {
            return new TableRef<T>(_renderer, reference);
        }

        public void Dispose()
        {
            _renderer.New<TextureArrayDisposeCommand>().Set(Ref(this));
            _renderer.QueueCommand();
        }

        public void SetSamplers(int index, ISampler[] samplers)
        {
            _renderer.New<TextureArraySetSamplersCommand>().Set(Ref(this), index, Ref(samplers.ToArray()));
            _renderer.QueueCommand();
        }

        public void SetTextures(int index, ITexture[] textures)
        {
            _renderer.New<TextureArraySetTexturesCommand>().Set(Ref(this), index, Ref(textures.ToArray()));
            _renderer.QueueCommand();
        }
    }
}