blob: da717224402e36068010d062037d199f1922edad (
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
24
25
26
27
28
|
namespace Ryujinx.Audio.Renderer.Server.Effect
{
/// <summary>
/// The usage state of an effect.
/// </summary>
public enum UsageState : byte
{
/// <summary>
/// The effect is in an invalid state.
/// </summary>
Invalid,
/// <summary>
/// The effect is new.
/// </summary>
New,
/// <summary>
/// The effect is enabled.
/// </summary>
Enabled,
/// <summary>
/// The effect is disabled.
/// </summary>
Disabled,
}
}
|