mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 09:47:44 +02:00
15 lines
No EOL
409 B
C#
15 lines
No EOL
409 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct CopyTexture
|
|
{
|
|
public RtFormat Format;
|
|
public bool LinearLayout;
|
|
public MemoryLayout MemoryLayout;
|
|
public int Depth;
|
|
public int Layer;
|
|
public int Stride;
|
|
public int Width;
|
|
public int Height;
|
|
public GpuVa Address;
|
|
}
|
|
} |