123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- Shader "Hidden/Universal Render Pipeline/BokehDepthOfField"
- {
- Properties
- {
- _MainTex("Source", 2D) = "white" {}
- }
- HLSLINCLUDE
- #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl"
- #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Color.hlsl"
- #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
- #include "Packages/com.unity.render-pipelines.universal/Shaders/PostProcessing/Common.hlsl"
- // Do not change this without changing PostProcessPass.PrepareBokehKernel()
- #define SAMPLE_COUNT 42
- // Toggle this to reduce flickering - note that it will reduce overall bokeh energy and add
- // a small cost to the pre-filtering pass
- #define COC_LUMA_WEIGHTING 0
- TEXTURE2D_X(_MainTex);
- TEXTURE2D_X(_DofTexture);
- TEXTURE2D_X(_FullCoCTexture);
- TEXTURE2D_X_FLOAT(_CameraDepthTexture);
- float4 _MainTex_TexelSize;
- float4 _DofTexture_TexelSize;
- float4 _CoCParams;
- float4 _BokehKernel[SAMPLE_COUNT];
- #define FocusDist _CoCParams.x
- #define MaxCoC _CoCParams.y
- #define MaxRadius _CoCParams.z
- #define RcpAspect _CoCParams.w
- half FragCoC(Varyings input) : SV_Target
- {
- UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
- float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
- float depth = LOAD_TEXTURE2D_X(_CameraDepthTexture, _MainTex_TexelSize.zw * uv).x;
- float linearEyeDepth = LinearEyeDepth(depth, _ZBufferParams);
- half coc = (1.0 - FocusDist / linearEyeDepth) * MaxCoC;
- half nearCoC = clamp(coc, -1.0, 0.0);
- half farCoC = saturate(coc);
- return saturate((farCoC + nearCoC + 1.0) * 0.5);
- }
- half4 FragPrefilter(Varyings input) : SV_Target
- {
- UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
- float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
- #if SHADER_TARGET >= 45 && defined(PLATFORM_SUPPORT_GATHER)
- // Sample source colors
- half4 cr = GATHER_RED_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
- half4 cg = GATHER_GREEN_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
- half4 cb = GATHER_BLUE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
- half3 c0 = half3(cr.x, cg.x, cb.x);
- half3 c1 = half3(cr.y, cg.y, cb.y);
- half3 c2 = half3(cr.z, cg.z, cb.z);
- half3 c3 = half3(cr.w, cg.w, cb.w);
- // Sample CoCs
- half4 cocs = GATHER_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv) * 2.0 - 1.0;
- half coc0 = cocs.x;
- half coc1 = cocs.y;
- half coc2 = cocs.z;
- half coc3 = cocs.w;
- #else
- float3 duv = _MainTex_TexelSize.xyx * float3(0.5, 0.5, -0.5);
- float2 uv0 = uv - duv.xy;
- float2 uv1 = uv - duv.zy;
- float2 uv2 = uv + duv.zy;
- float2 uv3 = uv + duv.xy;
- // Sample source colors
- half3 c0 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv0).xyz;
- half3 c1 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv1).xyz;
- half3 c2 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv2).xyz;
- half3 c3 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv3).xyz;
- // Sample CoCs
- half coc0 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv0).x * 2.0 - 1.0;
- half coc1 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv1).x * 2.0 - 1.0;
- half coc2 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv2).x * 2.0 - 1.0;
- half coc3 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv3).x * 2.0 - 1.0;
- #endif
- #if COC_LUMA_WEIGHTING
- // Apply CoC and luma weights to reduce bleeding and flickering
- half w0 = abs(coc0) / (Max3(c0.x, c0.y, c0.z) + 1.0);
- half w1 = abs(coc1) / (Max3(c1.x, c1.y, c1.z) + 1.0);
- half w2 = abs(coc2) / (Max3(c2.x, c2.y, c2.z) + 1.0);
- half w3 = abs(coc3) / (Max3(c3.x, c3.y, c3.z) + 1.0);
- // Weighted average of the color samples
- half3 avg = c0 * w0 + c1 * w1 + c2 * w2 + c3 * w3;
- avg /= max(w0 + w1 + w2 + w3, 1e-5);
- #else
- half3 avg = (c0 + c1 + c2 + c3) / 4.0;
- #endif
- // Select the largest CoC value
- half cocMin = min(coc0, Min3(coc1, coc2, coc3));
- half cocMax = max(coc0, Max3(coc1, coc2, coc3));
- half coc = (-cocMin > cocMax ? cocMin : cocMax) * MaxRadius;
- // Premultiply CoC
- avg *= smoothstep(0, _MainTex_TexelSize.y * 2.0, abs(coc));
- #if defined(UNITY_COLORSPACE_GAMMA)
- avg = SRGBToLinear(avg);
- #endif
- return half4(avg, coc);
- }
- void Accumulate(float4 samp0, float2 uv, float2 disp, inout half4 farAcc, inout half4 nearAcc)
- {
- float dist = length(disp);
- float2 duv = float2(disp.x * RcpAspect, disp.y);
- half4 samp = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv + duv);
- // Compare CoC of the current sample and the center sample and select smaller one
- half farCoC = max(min(samp0.a, samp.a), 0.0);
- // Compare the CoC to the sample distance & add a small margin to smooth out
- const half margin = _MainTex_TexelSize.y * 2.0;
- half farWeight = saturate((farCoC - dist + margin) / margin);
- half nearWeight = saturate((-samp.a - dist + margin) / margin);
- // Cut influence from focused areas because they're darkened by CoC premultiplying. This is only
- // needed for near field
- nearWeight *= step(_MainTex_TexelSize.y, -samp.a);
- // Accumulation
- farAcc += half4(samp.rgb, 1.0) * farWeight;
- nearAcc += half4(samp.rgb, 1.0) * nearWeight;
- }
- half4 FragBlur(Varyings input) : SV_Target
- {
- UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
- float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
- half4 samp0 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
- half4 farAcc = 0.0; // Background: far field bokeh
- half4 nearAcc = 0.0; // Foreground: near field bokeh
- // Center sample isn't in the kernel array, accumulate it separately
- Accumulate(samp0, uv, 0.0, farAcc, nearAcc);
- UNITY_LOOP
- for (int si = 0; si < SAMPLE_COUNT; si++)
- {
- float2 disp = _BokehKernel[si].xy * MaxRadius;
- Accumulate(samp0, uv, disp, farAcc, nearAcc);
- }
- // Get the weighted average
- farAcc.rgb /= farAcc.a + (farAcc.a == 0.0); // Zero-div guard
- nearAcc.rgb /= nearAcc.a + (nearAcc.a == 0.0);
- // Normalize the total of the weights for the near field
- nearAcc.a *= PI / (SAMPLE_COUNT + 1);
- // Alpha premultiplying
- half alpha = saturate(nearAcc.a);
- half3 rgb = lerp(farAcc.rgb, nearAcc.rgb, alpha);
- return half4(rgb, alpha);
- }
- half4 FragPostBlur(Varyings input) : SV_Target
- {
- UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
- float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
- // 9-tap tent filter with 4 bilinear samples
- float4 duv = _MainTex_TexelSize.xyxy * float4(0.5, 0.5, -0.5, 0);
- half4 acc;
- acc = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv - duv.xy);
- acc += SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv - duv.zy);
- acc += SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv + duv.zy);
- acc += SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv + duv.xy);
- return acc * 0.25;
- }
- half4 FragComposite(Varyings input) : SV_Target
- {
- UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
- float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
- half4 dof = SAMPLE_TEXTURE2D_X(_DofTexture, sampler_LinearClamp, uv);
- half coc = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv).r;
- coc = (coc - 0.5) * 2.0 * MaxRadius;
- // Convert CoC to far field alpha value
- float ffa = smoothstep(_MainTex_TexelSize.y * 2.0, _MainTex_TexelSize.y * 4.0, coc);
- half4 color = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
- #if defined(UNITY_COLORSPACE_GAMMA)
- color = SRGBToLinear(color);
- #endif
- half alpha = Max3(dof.r, dof.g, dof.b);
- color = lerp(color, half4(dof.rgb, alpha), ffa + dof.a - ffa * dof.a);
- #if defined(UNITY_COLORSPACE_GAMMA)
- color = LinearToSRGB(color);
- #endif
- return color;
- }
- ENDHLSL
- SubShader
- {
- Tags { "RenderPipeline" = "UniversalPipeline" }
- LOD 100
- ZTest Always ZWrite Off Cull Off
- Pass
- {
- Name "Bokeh Depth Of Field CoC"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragCoC
- #pragma target 4.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Prefilter"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragPrefilter
- #pragma target 4.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Blur"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragBlur
- #pragma target 4.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Post Blur"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragPostBlur
- #pragma target 4.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Composite"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragComposite
- #pragma target 4.5
- ENDHLSL
- }
- }
-
- // SM3.5 fallbacks - needed because of the use of Gather
- SubShader
- {
- Tags { "RenderPipeline" = "LightweightPipeline" }
- LOD 100
- ZTest Always ZWrite Off Cull Off
- Pass
- {
- Name "Bokeh Depth Of Field CoC"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragCoC
- #pragma target 3.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Prefilter"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragPrefilter
- #pragma target 3.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Blur"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragBlur
- #pragma target 3.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Post Blur"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragPostBlur
- #pragma target 3.5
- ENDHLSL
- }
- Pass
- {
- Name "Bokeh Depth Of Field Composite"
- HLSLPROGRAM
- #pragma vertex Vert
- #pragma fragment FragComposite
- #pragma target 3.5
- ENDHLSL
- }
- }
- }
|