aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/RtColorState.cs
blob: bb6ae208d585ac51fb71b33805e5f9c80e4a2f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
    }
}