aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/TonemappingMode.cs
blob: e10a0b4ad180a6cda1daefe37bd27e5f385ab2d6 (plain)
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
29
30
31
32
33
34
#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
}