mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-03-18 10:23:29 +09:00
* 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
10 lines
163 B
C#
10 lines
163 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface IImageArray : IDisposable
|
|
{
|
|
void SetImages(int index, ITexture[] images);
|
|
}
|
|
}
|