-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBloom.shader
120 lines (101 loc) · 3.37 KB
/
Bloom.shader
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
Shader "BASICxSHADER/PostEffect/Bloom" {
Properties {
_MainTex ("Texture", 2D) = "white" {}
_Bloom ("Bloom", Range (0, 1)) = 0.5
_Radius ("Radius", Float) = 9
}
CGINCLUDE
// Vertex Input
struct appdata {
float4 vertex : POSITION;
float2 uv : TEXCOORD0;
};
// Vertex to Fragment
struct v2f {
float4 pos : SV_POSITION;
float2 uv : TEXCOORD0;
};
//----------------------------------------------------------------------------
// Vertex Shader
//----------------------------------------------------------------------------
v2f vert(appdata v) {
v2f o;
o.pos = UnityObjectToClipPos(v.vertex);
o.uv = v.uv;
return o;
}
ENDCG
SubShader {
Cull Off ZWrite Off ZTest Always
// 0: High Luminance
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// Properties
uniform sampler2D _MainTex;
uniform half _Bloom;
//------------------------------------------------------------------------
// Fragment Shader
//------------------------------------------------------------------------
fixed4 frag(v2f i) : SV_Target {
fixed4 color = tex2D(_MainTex, i.uv);
// High Luminance
half y = dot(color.rgb, half3(0.30, 0.59, 0.11));
color.rgb *= step(_Bloom, y);
return color;
}
ENDCG
}
// 1: Gaussian Blur
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// Properties
uniform sampler2D _MainTex;
uniform float4 _MainTex_TexelSize;
uniform half2 _Direction;
uniform half _Radius;
//------------------------------------------------------------------------
// Fragment Shader
//------------------------------------------------------------------------
fixed4 frag(v2f i) : SV_Target {
half4 color = tex2D(_MainTex, i.uv);
// Gaussian Blur
float weights[5] = { 0.22702702702, 0.19459459459, 0.12162162162, 0.05405405405, 0.01621621621 };
float2 offset = _Direction * _MainTex_TexelSize.xy * _Radius;
color.rgb *= weights[0];
color.rgb += tex2D(_MainTex, i.uv + offset ).rgb * weights[1];
color.rgb += tex2D(_MainTex, i.uv - offset ).rgb * weights[1];
color.rgb += tex2D(_MainTex, i.uv + offset * 2.0).rgb * weights[2];
color.rgb += tex2D(_MainTex, i.uv - offset * 2.0).rgb * weights[2];
color.rgb += tex2D(_MainTex, i.uv + offset * 3.0).rgb * weights[3];
color.rgb += tex2D(_MainTex, i.uv - offset * 3.0).rgb * weights[3];
color.rgb += tex2D(_MainTex, i.uv + offset * 4.0).rgb * weights[4];
color.rgb += tex2D(_MainTex, i.uv - offset * 4.0).rgb * weights[4];
return color;
}
ENDCG
}
// 2: Bloom
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// Properties
uniform sampler2D _MainTex;
uniform sampler2D _BloomTex;
//------------------------------------------------------------------------
// Fragment Shader
//------------------------------------------------------------------------
fixed4 frag(v2f i) : SV_Target {
fixed4 color = tex2D(_MainTex, i.uv);
// Bloom
color.rgb = 1.0 - (1.0 - color.rgb) * (1.0 - tex2D(_BloomTex, i.uv).rgb);
return color;
}
ENDCG
}
}
}