mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-16 19:20:19 +00:00
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);
|
||
|
}
|
||
|
}
|