Ryujinx/Ryujinx.Graphics.Gpu/State/CopyTexture.cs

20 lines
577 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Texture to texture (with optional resizing) copy parameters.
/// </summary>
2019-10-13 08:02:07 +02:00
struct CopyTexture
{
#pragma warning disable CS0649
public ColorFormat Format;
public Boolean32 LinearLayout;
2019-10-13 08:02:07 +02:00
public MemoryLayout MemoryLayout;
public int Depth;
public int Layer;
public int Stride;
public int Width;
public int Height;
public GpuVa Address;
#pragma warning restore CS0649
2019-10-13 08:02:07 +02:00
}
}