aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion1.cs
blob: 5e6a33aced1c460dde583881dd5e1509cd606b1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System.Runtime.InteropServices;

namespace Ryujinx.Audio.Renderer.Parameter
{
    /// <summary>
    /// Output information for an effect version 1.
    /// </summary>
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    public struct EffectOutStatusVersion1 : IEffectOutStatus
    {
        /// <summary>
        /// Current effect state.
        /// </summary>
        public EffectState State;

        /// <summary>
        /// Unused/Reserved.
        /// </summary>
        private unsafe fixed byte _reserved[15];

        EffectState IEffectOutStatus.State { get => State; set => State = value; }
    }
}