0
0
Fork 0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2025-01-10 21:01:58 +00:00
Ryujinx/src/Ryujinx.Graphics.GAL/ITextureArray.cs

11 lines
227 B
C#
Raw Normal View History

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