blob: d119aa9fbdb4b23a03f6f311c8ec7da6c4f4c3ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System;
namespace Ryujinx.Graphics.GAL
{
public interface IImageArray : IDisposable
{
void SetFormats(int index, Format[] imageFormats);
void SetImages(int index, ITexture[] images);
}
}
|