forked from przemyslawzaworski/Unity3D-CG-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskybox_blur.shader
67 lines (60 loc) · 1.48 KB
/
skybox_blur.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
//written by Przemyslaw Zaworski
//https://github.com/przemyslawzaworski
Shader "Skybox Blur"
{
Properties
{
_Cube ("Environment Map", Cube) = "white" {}
_radius ("Blur Radius", Range (0.01,2.0)) = 0.5
}
SubShader
{
Tags { "Queue"="Background" }
Pass
{
ZWrite Off
Cull Off
CGPROGRAM
#pragma vertex vertex_shader
#pragma fragment pixel_shader
#pragma target 3.0
TextureCube _Cube;
SamplerState sampler_Cube;
float _radius;
struct structure
{
float4 vertex:SV_POSITION;
float3 uv : TEXCOORD0;
};
float3 blur(float3 uv,float radius)
{
float w, h;
_Cube.GetDimensions(w, h);
float2x2 m = float2x2(-0.736717,0.6762,-0.6762,-0.736717);
float3 total = float3(0.0,0.0,0.0);
float2 s = float2(1.0/w,1.0/h);
float2 texel = float2(0.002*s.x/s.y,0.002);
float2 angle = float2(0.0,radius);
radius = 1.0;
for (int j=0;j<80;j++)
{
radius += (1.0/radius);
angle = mul(angle,m);
float3 color = _Cube.Sample(sampler_Cube,uv+float3(texel*(radius-1.0)*angle,0.0)).rgb;
total += color;
}
return total/80.0;
}
void vertex_shader(float4 vertex:POSITION,float3 uv:TEXCOORD0,out structure vs)
{
vs.vertex = UnityObjectToClipPos(vertex);
vs.uv = uv;
}
void pixel_shader(in structure ps, out float4 fragColor:SV_Target)
{
fragColor = float4(blur(ps.uv,_radius),1.0);
}
ENDCG
}
}
}