aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodTexture.cs
blob: 8e8afb41c7801b4b0afd63790b3af513489318b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using Ryujinx.Graphics.Gpu.Engine.Types;

namespace Ryujinx.Graphics.Gpu.Engine.Twod
{
    /// <summary>
    /// Texture to texture (with optional resizing) copy parameters.
    /// </summary>
    struct TwodTexture
    {
#pragma warning disable CS0649 // Field is never assigned to
        public ColorFormat Format;
        public Boolean32 LinearLayout;
        public MemoryLayout MemoryLayout;
        public int Depth;
        public int Layer;
        public int Stride;
        public int Width;
        public int Height;
        public GpuVa Address;
#pragma warning restore CS0649
    }
}