mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:38:37 +00:00
38be18ef2a
The texture target must be taken from the storage rather than the view, when using the storage handle for the copy.
15 lines
280 B
C#
15 lines
280 B
C#
using Ryujinx.Graphics.GAL;
|
|
|
|
namespace Ryujinx.Graphics.OpenGL.Image
|
|
{
|
|
interface ITextureInfo
|
|
{
|
|
ITextureInfo Storage { get; }
|
|
int Handle { get; }
|
|
int FirstLayer => 0;
|
|
int FirstLevel => 0;
|
|
|
|
TextureCreateInfo Info { get; }
|
|
}
|
|
}
|