17 lines
No EOL
372 B
C#
17 lines
No EOL
372 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
/// <summary>
|
|
/// Texture copy region.
|
|
/// </summary>
|
|
struct CopyRegion
|
|
{
|
|
public int DstX;
|
|
public int DstY;
|
|
public int DstWidth;
|
|
public int DstHeight;
|
|
public long SrcWidthRF;
|
|
public long SrcHeightRF;
|
|
public long SrcXF;
|
|
public long SrcYF;
|
|
}
|
|
} |