You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
536 B
35 lines
536 B
5 months ago
|
#pragma warning disable SA1300 // Lowercase required for backwards compat.
|
||
|
|
||
|
namespace MediaBrowser.Model.Entities;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Enum containing tonemapping modes.
|
||
|
/// </summary>
|
||
|
public enum TonemappingMode
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Auto.
|
||
|
/// </summary>
|
||
|
auto = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Max.
|
||
|
/// </summary>
|
||
|
max = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// RGB.
|
||
|
/// </summary>
|
||
|
rgb = 2,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Lum.
|
||
|
/// </summary>
|
||
|
lum = 3,
|
||
|
|
||
|
/// <summary>
|
||
|
/// ITP.
|
||
|
/// </summary>
|
||
|
itp = 4
|
||
|
}
|