/ src / Ryujinx.Graphics.GAL / ITextureArray.cs
ITextureArray.cs
 1  using System;
 2  
 3  namespace Ryujinx.Graphics.GAL
 4  {
 5      public interface ITextureArray : IDisposable
 6      {
 7          void SetSamplers(int index, ISampler[] samplers);
 8          void SetTextures(int index, ITexture[] textures);
 9      }
10  }