2019-10-13 02:02:07 -04:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 11:32:06 -05:00
|
|
|
/// <summary>
|
|
|
|
/// Buffer to texture copy parameters.
|
|
|
|
/// </summary>
|
2019-10-13 02:02:07 -04:00
|
|
|
struct CopyBufferTexture
|
|
|
|
{
|
2020-04-20 17:59:59 -04:00
|
|
|
#pragma warning disable CS0649
|
2019-10-13 02:02:07 -04:00
|
|
|
public MemoryLayout MemoryLayout;
|
|
|
|
public int Width;
|
|
|
|
public int Height;
|
|
|
|
public int Depth;
|
|
|
|
public int RegionZ;
|
|
|
|
public ushort RegionX;
|
|
|
|
public ushort RegionY;
|
2020-04-20 17:59:59 -04:00
|
|
|
#pragma warning restore CS0649
|
2019-10-13 02:02:07 -04:00
|
|
|
}
|
|
|
|
}
|