mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-25 00:40:13 +01:00
17 lines
505 B
C#
17 lines
505 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct Inline2MemoryParams
|
|
{
|
|
public int LineLengthIn;
|
|
public int LineCount;
|
|
public GpuVa DstAddress;
|
|
public int DstStride;
|
|
public MemoryLayout DstMemoryLayout;
|
|
public int DstWidth;
|
|
public int DstHeight;
|
|
public int DstDepth;
|
|
public int DstZ;
|
|
public int DstX;
|
|
public int DstY;
|
|
}
|
|
} |