forked from przemyslawzaworski/Unity3D-CG-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchromatic_aberration.shader
48 lines (44 loc) · 999 Bytes
/
chromatic_aberration.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
Shader "Chromatic Aberration"
{
Properties
{
[HideInInspector]
_MainTex ("Texture", 2D) = "white" {}
_amount ("Amount",Range(0.0,0.01)) = 0.005
}
Subshader
{
Pass
{
CGPROGRAM
#pragma vertex vertex_shader
#pragma fragment pixel_shader
#pragma target 3.0
sampler2D _MainTex;
float _amount;
struct structure
{
float4 vertex : SV_POSITION;
float2 uv : TEXCOORD0;
};
structure vertex_shader (float4 vertex:POSITION, float2 uv:TEXCOORD0)
{
structure vs;
vs.vertex = UnityObjectToClipPos (vertex);
vs.uv = uv;
return vs;
}
float4 pixel_shader (structure ps) : COLOR
{
float2 uv = ps.uv.xy;
float3 color;
color.r = tex2D( _MainTex, float2(uv.x+_amount,uv.y) ).r;
color.g = tex2D( _MainTex, uv ).g;
color.b = tex2D( _MainTex, float2(uv.x-_amount,uv.y) ).b;
color *= (1.0 - _amount* 0.5);
return float4(color,1.0);
}
ENDCG
}
}
}