2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 17:32:06 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Texture to texture (with optional resizing) copy parameters.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
struct CopyTexture
|
|
|
|
{
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning disable CS0649
|
2020-11-05 23:50:34 +01:00
|
|
|
public ColorFormat Format;
|
2019-10-26 19:50:52 +02:00
|
|
|
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;
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning restore CS0649
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|