aboutsummaryrefslogblamecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/TfBufferState.cs
blob: 24dc0952feda0a74ff34bd59c97eb05631c51735 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
















                                        
namespace Ryujinx.Graphics.Gpu.State
{
    /// <summary>
    /// Transform feedback buffer state.
    /// </summary>
    struct TfBufferState
    {
#pragma warning disable CS0649
        public Boolean32 Enable;
        public GpuVa     Address;
        public int       Size;
        public int       Offset;
        public uint      Padding0;
        public uint      Padding1;
        public uint      Padding2;
#pragma warning restore CS0649
    }
}