aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/CopyBufferTexture.cs
blob: cb63c607dfded3fa3b4b7e3168722e66e513780a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.Graphics.Gpu.State
{
    struct CopyBufferTexture
    {
        public MemoryLayout MemoryLayout;
        public int          Width;
        public int          Height;
        public int          Depth;
        public int          RegionZ;
        public ushort       RegionX;
        public ushort       RegionY;
    }
}