0
0
Fork 0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2024-12-23 01:05:47 +00:00
Ryujinx/src/Ryujinx.Graphics.GAL/IImageArray.cs
gdkchan eb8132b627
Change image format view handling to allow view incompatible formats (#7311)
* Allow creating texture aliases on texture pool

* Delete old image format override code

* New format incompatible alias

* Missing bounds check

* GetForBinding now takes FormatInfo

* Make FormatInfo struct more compact
2024-09-17 15:52:30 -03:00

9 lines
163 B
C#

using System;
namespace Ryujinx.Graphics.GAL
{
public interface IImageArray : IDisposable
{
void SetImages(int index, ITexture[] images);
}
}