mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-24 00:30:17 +00:00
13 lines
345 B
C#
13 lines
345 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct RtColorState
|
|
{
|
|
public GpuVa Address;
|
|
public int WidthOrStride;
|
|
public int Height;
|
|
public RtFormat Format;
|
|
public MemoryLayout MemoryLayout;
|
|
public int Depth;
|
|
public int LayerSize;
|
|
}
|
|
}
|