9 lines
193 B
C#
9 lines
193 B
C#
|
namespace Ryujinx.Graphics.GAL
|
||
|
{
|
||
|
public interface IImageArray
|
||
|
{
|
||
|
void SetFormats(int index, Format[] imageFormats);
|
||
|
void SetImages(int index, ITexture[] images);
|
||
|
}
|
||
|
}
|