aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/CopyBufferParams.cs
blob: 2876dedd616eb269e6ec6ef65e548840546606cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Graphics.Gpu.State
{
    struct CopyBufferParams
    {
        public GpuVa SrcAddress;
        public GpuVa DstAddress;
        public int   SrcStride;
        public int   DstStride;
        public int   XCount;
        public int   YCount;
    }
}