2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
|
|
|
struct CopyTexture
|
|
|
|
{
|
|
|
|
public RtFormat Format;
|
2019-10-26 19:50:52 +02:00
|
|
|
public Boolean32 LinearLayout;
|
2019-10-13 08:02:07 +02:00
|
|
|
public MemoryLayout MemoryLayout;
|
|
|
|
public int Depth;
|
|
|
|
public int Layer;
|
|
|
|
public int Stride;
|
|
|
|
public int Width;
|
|
|
|
public int Height;
|
|
|
|
public GpuVa Address;
|
|
|
|
}
|
|
|
|
}
|