-
Notifications
You must be signed in to change notification settings - Fork 6
/
DOF.shader
100 lines (86 loc) · 2.99 KB
/
DOF.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
Shader "BASICxSHADER/PostEffect/DOF" {
Properties {
_MainTex ("Texture", 2D) = "white" {}
_Radius ("Radius", Float) = 3
_Depth ("Depth", Range (0, 1)) = 0.1
}
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: 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
}
// 1: DOF
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// Properties
uniform sampler2D _MainTex;
uniform sampler2D _BlurTex;
uniform half _Depth;
uniform sampler2D _CameraDepthTexture;
//------------------------------------------------------------------------
// Fragment Shader
//------------------------------------------------------------------------
fixed4 frag(v2f i) : SV_Target {
fixed4 color = tex2D(_MainTex, i.uv);
// DOF
float depth = tex2D(_CameraDepthTexture, i.uv).r;
depth = 1.0 / (_ZBufferParams.x * depth + _ZBufferParams.y) * _Depth;
float blur = saturate(depth * _ProjectionParams.z);
color.rgb = lerp(color.rgb, tex2D(_BlurTex, i.uv).rgb, blur);
return color;
}
ENDCG
}
}
}