Skip to content

Commit 378075c

Browse files
Firts commit.
1 parent b1b22a4 commit 378075c

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

filmic_tonemapping.shader

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
//reference: "Filmic Tonemapping for Real-time Rendering" Siggraph 2010 Course by Haarm-Pieter Duiker.
2+
Shader "Filmic tonemapping"
3+
{
4+
Properties
5+
{
6+
_MainTex ("Texture", 2D) = "white" {}
7+
}
8+
Subshader
9+
{
10+
Pass
11+
{
12+
CGPROGRAM
13+
#pragma vertex vertex_shader
14+
#pragma fragment pixel_shader
15+
#pragma target 3.0
16+
17+
sampler2D _MainTex;
18+
19+
struct custom_type
20+
{
21+
float4 vertex : SV_POSITION;
22+
float2 uv : TEXCOORD0;
23+
};
24+
25+
float4 filmic_tonemapping(float3 x)
26+
{
27+
x = max(float3(0,0,0), x - float3(0.004,0.004,0.004));
28+
x = (x * (6.2 * x + .5)) / (x * (6.2 * x + 1.7) + 0.06);
29+
return float4(x,1.0);
30+
}
31+
32+
custom_type vertex_shader (float4 vertex:POSITION, float2 uv:TEXCOORD0)
33+
{
34+
custom_type vs;
35+
vs.vertex = mul (UNITY_MATRIX_MVP,vertex);
36+
vs.uv = uv;
37+
return vs;
38+
}
39+
40+
float4 pixel_shader (custom_type ps) : COLOR
41+
{
42+
float2 u = ps.uv.xy;
43+
float4 color = tex2D(_MainTex,u);
44+
return filmic_tonemapping(color);
45+
}
46+
ENDCG
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)