2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 17:32:06 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Buffer to texture copy parameters.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
struct CopyBufferTexture
|
|
|
|
{
|
|
|
|
public MemoryLayout MemoryLayout;
|
|
|
|
public int Width;
|
|
|
|
public int Height;
|
|
|
|
public int Depth;
|
|
|
|
public int RegionZ;
|
|
|
|
public ushort RegionX;
|
|
|
|
public ushort RegionY;
|
|
|
|
}
|
|
|
|
}
|