1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-16 12:50:04 -06:00
ryujinx/Ryujinx.Graphics.Gpu/State/CopyBufferTexture.cs

18 lines
482 B
C#
Raw Normal View History

2019-10-13 01:02:07 -05:00
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Buffer to texture copy parameters.
/// </summary>
2019-10-13 01:02:07 -05:00
struct CopyBufferTexture
{
#pragma warning disable CS0649
2019-10-13 01:02:07 -05:00
public MemoryLayout MemoryLayout;
public int Width;
public int Height;
public int Depth;
public int RegionZ;
public ushort RegionX;
public ushort RegionY;
#pragma warning restore CS0649
2019-10-13 01:02:07 -05:00
}
}