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