#pragma warning disable SA1300 // Lowercase required for backwards compat. namespace MediaBrowser.Model.Entities; /// /// Enum containing tonemapping algorithms. /// public enum TonemappingAlgorithm { /// /// None. /// none = 0, /// /// Clip. /// clip = 1, /// /// Linear. /// linear = 2, /// /// Gamma. /// gamma = 3, /// /// Reinhard. /// reinhard = 4, /// /// Hable. /// hable = 5, /// /// Mobius. /// mobius = 6, /// /// BT2390. /// bt2390 = 7 }