blob: 83e7e43085f51cd8af362faa8a6f809e6b862fe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace Ryujinx.Graphics.Gpu.State
{
struct CopyTexture
{
public RtFormat Format;
public Boolean32 LinearLayout;
public MemoryLayout MemoryLayout;
public int Depth;
public int Layer;
public int Stride;
public int Width;
public int Height;
public GpuVa Address;
}
}
|