aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/TonemappingAlgorithm.cs
blob: 488006e0bc58cc100056c2026b541adce78d90a3 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma warning disable SA1300 // Lowercase required for backwards compat.

namespace MediaBrowser.Model.Entities;

/// <summary>
/// Enum containing tonemapping algorithms.
/// </summary>
public enum TonemappingAlgorithm
{
    /// <summary>
    /// None.
    /// </summary>
    none = 0,

    /// <summary>
    /// Clip.
    /// </summary>
    clip = 1,

    /// <summary>
    /// Linear.
    /// </summary>
    linear = 2,

    /// <summary>
    /// Gamma.
    /// </summary>
    gamma = 3,

    /// <summary>
    /// Reinhard.
    /// </summary>
    reinhard = 4,

    /// <summary>
    /// Hable.
    /// </summary>
    hable = 5,

    /// <summary>
    /// Mobius.
    /// </summary>
    mobius = 6,

    /// <summary>
    /// BT2390.
    /// </summary>
    bt2390 = 7
}