aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/ITextureArray.cs
blob: 9ee79dacbb278744d1d25a46663b64af98c03f1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

namespace Ryujinx.Graphics.GAL
{
    public interface ITextureArray : IDisposable
    {
        void SetSamplers(int index, ISampler[] samplers);
        void SetTextures(int index, ITexture[] textures);
    }
}