BokehDepthOfField.shader 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. Shader "Hidden/Universal Render Pipeline/BokehDepthOfField"
  2. {
  3. Properties
  4. {
  5. _MainTex("Source", 2D) = "white" {}
  6. }
  7. HLSLINCLUDE
  8. #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl"
  9. #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Color.hlsl"
  10. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  11. #include "Packages/com.unity.render-pipelines.universal/Shaders/PostProcessing/Common.hlsl"
  12. // Do not change this without changing PostProcessPass.PrepareBokehKernel()
  13. #define SAMPLE_COUNT 42
  14. // Toggle this to reduce flickering - note that it will reduce overall bokeh energy and add
  15. // a small cost to the pre-filtering pass
  16. #define COC_LUMA_WEIGHTING 0
  17. TEXTURE2D_X(_MainTex);
  18. TEXTURE2D_X(_DofTexture);
  19. TEXTURE2D_X(_FullCoCTexture);
  20. TEXTURE2D_X_FLOAT(_CameraDepthTexture);
  21. float4 _MainTex_TexelSize;
  22. float4 _DofTexture_TexelSize;
  23. float4 _CoCParams;
  24. float4 _BokehKernel[SAMPLE_COUNT];
  25. #define FocusDist _CoCParams.x
  26. #define MaxCoC _CoCParams.y
  27. #define MaxRadius _CoCParams.z
  28. #define RcpAspect _CoCParams.w
  29. half FragCoC(Varyings input) : SV_Target
  30. {
  31. UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
  32. float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
  33. float depth = LOAD_TEXTURE2D_X(_CameraDepthTexture, _MainTex_TexelSize.zw * uv).x;
  34. float linearEyeDepth = LinearEyeDepth(depth, _ZBufferParams);
  35. half coc = (1.0 - FocusDist / linearEyeDepth) * MaxCoC;
  36. half nearCoC = clamp(coc, -1.0, 0.0);
  37. half farCoC = saturate(coc);
  38. return saturate((farCoC + nearCoC + 1.0) * 0.5);
  39. }
  40. half4 FragPrefilter(Varyings input) : SV_Target
  41. {
  42. UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
  43. float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
  44. #if SHADER_TARGET >= 45 && defined(PLATFORM_SUPPORT_GATHER)
  45. // Sample source colors
  46. half4 cr = GATHER_RED_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
  47. half4 cg = GATHER_GREEN_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
  48. half4 cb = GATHER_BLUE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
  49. half3 c0 = half3(cr.x, cg.x, cb.x);
  50. half3 c1 = half3(cr.y, cg.y, cb.y);
  51. half3 c2 = half3(cr.z, cg.z, cb.z);
  52. half3 c3 = half3(cr.w, cg.w, cb.w);
  53. // Sample CoCs
  54. half4 cocs = GATHER_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv) * 2.0 - 1.0;
  55. half coc0 = cocs.x;
  56. half coc1 = cocs.y;
  57. half coc2 = cocs.z;
  58. half coc3 = cocs.w;
  59. #else
  60. float3 duv = _MainTex_TexelSize.xyx * float3(0.5, 0.5, -0.5);
  61. float2 uv0 = uv - duv.xy;
  62. float2 uv1 = uv - duv.zy;
  63. float2 uv2 = uv + duv.zy;
  64. float2 uv3 = uv + duv.xy;
  65. // Sample source colors
  66. half3 c0 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv0).xyz;
  67. half3 c1 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv1).xyz;
  68. half3 c2 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv2).xyz;
  69. half3 c3 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv3).xyz;
  70. // Sample CoCs
  71. half coc0 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv0).x * 2.0 - 1.0;
  72. half coc1 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv1).x * 2.0 - 1.0;
  73. half coc2 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv2).x * 2.0 - 1.0;
  74. half coc3 = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv3).x * 2.0 - 1.0;
  75. #endif
  76. #if COC_LUMA_WEIGHTING
  77. // Apply CoC and luma weights to reduce bleeding and flickering
  78. half w0 = abs(coc0) / (Max3(c0.x, c0.y, c0.z) + 1.0);
  79. half w1 = abs(coc1) / (Max3(c1.x, c1.y, c1.z) + 1.0);
  80. half w2 = abs(coc2) / (Max3(c2.x, c2.y, c2.z) + 1.0);
  81. half w3 = abs(coc3) / (Max3(c3.x, c3.y, c3.z) + 1.0);
  82. // Weighted average of the color samples
  83. half3 avg = c0 * w0 + c1 * w1 + c2 * w2 + c3 * w3;
  84. avg /= max(w0 + w1 + w2 + w3, 1e-5);
  85. #else
  86. half3 avg = (c0 + c1 + c2 + c3) / 4.0;
  87. #endif
  88. // Select the largest CoC value
  89. half cocMin = min(coc0, Min3(coc1, coc2, coc3));
  90. half cocMax = max(coc0, Max3(coc1, coc2, coc3));
  91. half coc = (-cocMin > cocMax ? cocMin : cocMax) * MaxRadius;
  92. // Premultiply CoC
  93. avg *= smoothstep(0, _MainTex_TexelSize.y * 2.0, abs(coc));
  94. #if defined(UNITY_COLORSPACE_GAMMA)
  95. avg = SRGBToLinear(avg);
  96. #endif
  97. return half4(avg, coc);
  98. }
  99. void Accumulate(float4 samp0, float2 uv, float2 disp, inout half4 farAcc, inout half4 nearAcc)
  100. {
  101. float dist = length(disp);
  102. float2 duv = float2(disp.x * RcpAspect, disp.y);
  103. half4 samp = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv + duv);
  104. // Compare CoC of the current sample and the center sample and select smaller one
  105. half farCoC = max(min(samp0.a, samp.a), 0.0);
  106. // Compare the CoC to the sample distance & add a small margin to smooth out
  107. const half margin = _MainTex_TexelSize.y * 2.0;
  108. half farWeight = saturate((farCoC - dist + margin) / margin);
  109. half nearWeight = saturate((-samp.a - dist + margin) / margin);
  110. // Cut influence from focused areas because they're darkened by CoC premultiplying. This is only
  111. // needed for near field
  112. nearWeight *= step(_MainTex_TexelSize.y, -samp.a);
  113. // Accumulation
  114. farAcc += half4(samp.rgb, 1.0) * farWeight;
  115. nearAcc += half4(samp.rgb, 1.0) * nearWeight;
  116. }
  117. half4 FragBlur(Varyings input) : SV_Target
  118. {
  119. UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
  120. float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
  121. half4 samp0 = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
  122. half4 farAcc = 0.0; // Background: far field bokeh
  123. half4 nearAcc = 0.0; // Foreground: near field bokeh
  124. // Center sample isn't in the kernel array, accumulate it separately
  125. Accumulate(samp0, uv, 0.0, farAcc, nearAcc);
  126. UNITY_LOOP
  127. for (int si = 0; si < SAMPLE_COUNT; si++)
  128. {
  129. float2 disp = _BokehKernel[si].xy * MaxRadius;
  130. Accumulate(samp0, uv, disp, farAcc, nearAcc);
  131. }
  132. // Get the weighted average
  133. farAcc.rgb /= farAcc.a + (farAcc.a == 0.0); // Zero-div guard
  134. nearAcc.rgb /= nearAcc.a + (nearAcc.a == 0.0);
  135. // Normalize the total of the weights for the near field
  136. nearAcc.a *= PI / (SAMPLE_COUNT + 1);
  137. // Alpha premultiplying
  138. half alpha = saturate(nearAcc.a);
  139. half3 rgb = lerp(farAcc.rgb, nearAcc.rgb, alpha);
  140. return half4(rgb, alpha);
  141. }
  142. half4 FragPostBlur(Varyings input) : SV_Target
  143. {
  144. UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
  145. float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
  146. // 9-tap tent filter with 4 bilinear samples
  147. float4 duv = _MainTex_TexelSize.xyxy * float4(0.5, 0.5, -0.5, 0);
  148. half4 acc;
  149. acc = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv - duv.xy);
  150. acc += SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv - duv.zy);
  151. acc += SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv + duv.zy);
  152. acc += SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv + duv.xy);
  153. return acc * 0.25;
  154. }
  155. half4 FragComposite(Varyings input) : SV_Target
  156. {
  157. UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
  158. float2 uv = UnityStereoTransformScreenSpaceTex(input.uv);
  159. half4 dof = SAMPLE_TEXTURE2D_X(_DofTexture, sampler_LinearClamp, uv);
  160. half coc = SAMPLE_TEXTURE2D_X(_FullCoCTexture, sampler_LinearClamp, uv).r;
  161. coc = (coc - 0.5) * 2.0 * MaxRadius;
  162. // Convert CoC to far field alpha value
  163. float ffa = smoothstep(_MainTex_TexelSize.y * 2.0, _MainTex_TexelSize.y * 4.0, coc);
  164. half4 color = SAMPLE_TEXTURE2D_X(_MainTex, sampler_LinearClamp, uv);
  165. #if defined(UNITY_COLORSPACE_GAMMA)
  166. color = SRGBToLinear(color);
  167. #endif
  168. half alpha = Max3(dof.r, dof.g, dof.b);
  169. color = lerp(color, half4(dof.rgb, alpha), ffa + dof.a - ffa * dof.a);
  170. #if defined(UNITY_COLORSPACE_GAMMA)
  171. color = LinearToSRGB(color);
  172. #endif
  173. return color;
  174. }
  175. ENDHLSL
  176. SubShader
  177. {
  178. Tags { "RenderPipeline" = "UniversalPipeline" }
  179. LOD 100
  180. ZTest Always ZWrite Off Cull Off
  181. Pass
  182. {
  183. Name "Bokeh Depth Of Field CoC"
  184. HLSLPROGRAM
  185. #pragma vertex Vert
  186. #pragma fragment FragCoC
  187. #pragma target 4.5
  188. ENDHLSL
  189. }
  190. Pass
  191. {
  192. Name "Bokeh Depth Of Field Prefilter"
  193. HLSLPROGRAM
  194. #pragma vertex Vert
  195. #pragma fragment FragPrefilter
  196. #pragma target 4.5
  197. ENDHLSL
  198. }
  199. Pass
  200. {
  201. Name "Bokeh Depth Of Field Blur"
  202. HLSLPROGRAM
  203. #pragma vertex Vert
  204. #pragma fragment FragBlur
  205. #pragma target 4.5
  206. ENDHLSL
  207. }
  208. Pass
  209. {
  210. Name "Bokeh Depth Of Field Post Blur"
  211. HLSLPROGRAM
  212. #pragma vertex Vert
  213. #pragma fragment FragPostBlur
  214. #pragma target 4.5
  215. ENDHLSL
  216. }
  217. Pass
  218. {
  219. Name "Bokeh Depth Of Field Composite"
  220. HLSLPROGRAM
  221. #pragma vertex Vert
  222. #pragma fragment FragComposite
  223. #pragma target 4.5
  224. ENDHLSL
  225. }
  226. }
  227. // SM3.5 fallbacks - needed because of the use of Gather
  228. SubShader
  229. {
  230. Tags { "RenderPipeline" = "LightweightPipeline" }
  231. LOD 100
  232. ZTest Always ZWrite Off Cull Off
  233. Pass
  234. {
  235. Name "Bokeh Depth Of Field CoC"
  236. HLSLPROGRAM
  237. #pragma vertex Vert
  238. #pragma fragment FragCoC
  239. #pragma target 3.5
  240. ENDHLSL
  241. }
  242. Pass
  243. {
  244. Name "Bokeh Depth Of Field Prefilter"
  245. HLSLPROGRAM
  246. #pragma vertex Vert
  247. #pragma fragment FragPrefilter
  248. #pragma target 3.5
  249. ENDHLSL
  250. }
  251. Pass
  252. {
  253. Name "Bokeh Depth Of Field Blur"
  254. HLSLPROGRAM
  255. #pragma vertex Vert
  256. #pragma fragment FragBlur
  257. #pragma target 3.5
  258. ENDHLSL
  259. }
  260. Pass
  261. {
  262. Name "Bokeh Depth Of Field Post Blur"
  263. HLSLPROGRAM
  264. #pragma vertex Vert
  265. #pragma fragment FragPostBlur
  266. #pragma target 3.5
  267. ENDHLSL
  268. }
  269. Pass
  270. {
  271. Name "Bokeh Depth Of Field Composite"
  272. HLSLPROGRAM
  273. #pragma vertex Vert
  274. #pragma fragment FragComposite
  275. #pragma target 3.5
  276. ENDHLSL
  277. }
  278. }
  279. }