This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.Graphics.Gpu/State/CopyTexture.cs

15 lines
409 B
C#

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;
}
}