using System.Runtime.InteropServices;
namespace Ryujinx.Audio.Renderer.Parameter
{
/// <summary>
/// Output information for an effect version 2. (added with REV9)
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct EffectOutStatusVersion2 : IEffectOutStatus
/// Current effect state.
public EffectState State;
/// Unused/Reserved.
private unsafe fixed byte _reserved[15];
/// Current result state.
public EffectResultState ResultState;
EffectState IEffectOutStatus.State { get => State; set => State = value; }
}