River Jiang
2020-10-28 4fe7a27d965c1433c940d5b3eaa13930fa999621
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Shader "Hidden/Post FX/Monitors/Waveform Render"
{
    SubShader
    {
        ZTest Always Cull Off ZWrite Off
        Fog { Mode off }
 
        CGINCLUDE
 
            #pragma fragmentoption ARB_precision_hint_fastest
            #pragma target 5.0
            #include "UnityCG.cginc"
 
            StructuredBuffer<uint4> _Waveform;
            float2 _Size;
            float4 _Channels;
            float _Exposure;
 
            float3 Tonemap(float3 x, float exposure)
            {
                const float a = 6.2;
                const float b = 0.5;
                const float c = 1.7;
                const float d = 0.06;
                x *= exposure;
                x = max((0.0).xxx, x - (0.004).xxx);
                x = (x * (a * x + b)) / (x * (a * x + c) + d);
                return x * x;
            }
 
            float4 FragWaveform(v2f_img i) : SV_Target
            {
                const float3 red = float3(1.4, 0.03, 0.02);
                const float3 green = float3(0.02, 1.1, 0.05);
                const float3 blue = float3(0.0, 0.25, 1.5);
                float3 color = float3(0.0, 0.0, 0.0);
 
                uint2 uvI = i.pos.xy;
                float4 w = _Waveform[uvI.y + uvI.x * _Size.y]; // Waveform data is stored in columns instead of rows
 
                color += red * w.r * _Channels.r;
                color += green * w.g * _Channels.g;
                color += blue * w.b * _Channels.b;
                color += w.aaa * _Channels.a * 1.5;
                color = Tonemap(color, _Exposure);
                color += (0.1).xxx;
 
                return float4(saturate(color), 1.0);
            }
 
        ENDCG
 
        // (0)
        Pass
        {
            CGPROGRAM
 
                #pragma vertex vert_img
                #pragma fragment FragWaveform
 
            ENDCG
        }
    }
    FallBack off
}