UsageState.cs 567 B

12345678910111213141516171819202122232425262728
  1. namespace Ryujinx.Audio.Renderer.Server.Effect
  2. {
  3. /// <summary>
  4. /// The usage state of an effect.
  5. /// </summary>
  6. public enum UsageState : byte
  7. {
  8. /// <summary>
  9. /// The effect is in an invalid state.
  10. /// </summary>
  11. Invalid,
  12. /// <summary>
  13. /// The effect is new.
  14. /// </summary>
  15. New,
  16. /// <summary>
  17. /// The effect is enabled.
  18. /// </summary>
  19. Enabled,
  20. /// <summary>
  21. /// The effect is disabled.
  22. /// </summary>
  23. Disabled
  24. }
  25. }