CopyDepthPass.hlsl 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #ifndef UNIVERSAL_COPY_DEPTH_PASS_INCLUDED
  2. #define UNIVERSAL_COPY_DEPTH_PASS_INCLUDED
  3. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  4. struct Attributes
  5. {
  6. float4 positionOS : POSITION;
  7. float2 uv : TEXCOORD0;
  8. UNITY_VERTEX_INPUT_INSTANCE_ID
  9. };
  10. struct Varyings
  11. {
  12. float4 positionCS : SV_POSITION;
  13. float2 uv : TEXCOORD0;
  14. UNITY_VERTEX_INPUT_INSTANCE_ID
  15. UNITY_VERTEX_OUTPUT_STEREO
  16. };
  17. Varyings vert(Attributes input)
  18. {
  19. Varyings output;
  20. UNITY_SETUP_INSTANCE_ID(input);
  21. UNITY_TRANSFER_INSTANCE_ID(input, output);
  22. UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output);
  23. output.uv = input.uv;
  24. output.positionCS = TransformObjectToHClip(input.positionOS.xyz);
  25. return output;
  26. }
  27. #if defined(UNITY_STEREO_INSTANCING_ENABLED) || defined(UNITY_STEREO_MULTIVIEW_ENABLED)
  28. #define DEPTH_TEXTURE_MS(name, samples) Texture2DMSArray<float, samples> name
  29. #define DEPTH_TEXTURE(name) TEXTURE2D_ARRAY_FLOAT(name)
  30. #define LOAD(uv, sampleIndex) LOAD_TEXTURE2D_ARRAY_MSAA(_CameraDepthAttachment, uv, unity_StereoEyeIndex, sampleIndex)
  31. #define SAMPLE(uv) SAMPLE_TEXTURE2D_ARRAY(_CameraDepthAttachment, sampler_CameraDepthAttachment, uv, unity_StereoEyeIndex).r
  32. #else
  33. #define DEPTH_TEXTURE_MS(name, samples) Texture2DMS<float, samples> name
  34. #define DEPTH_TEXTURE(name) TEXTURE2D_FLOAT(name)
  35. #define LOAD(uv, sampleIndex) LOAD_TEXTURE2D_MSAA(_CameraDepthAttachment, uv, sampleIndex)
  36. #define SAMPLE(uv) SAMPLE_DEPTH_TEXTURE(_CameraDepthAttachment, sampler_CameraDepthAttachment, uv)
  37. #endif
  38. #ifdef _DEPTH_MSAA_2
  39. #define MSAA_SAMPLES 2
  40. #elif _DEPTH_MSAA_4
  41. #define MSAA_SAMPLES 4
  42. #endif
  43. #ifdef _DEPTH_NO_MSAA
  44. DEPTH_TEXTURE(_CameraDepthAttachment);
  45. SAMPLER(sampler_CameraDepthAttachment);
  46. #else
  47. DEPTH_TEXTURE_MS(_CameraDepthAttachment, MSAA_SAMPLES);
  48. float4 _CameraDepthAttachment_TexelSize;
  49. #endif
  50. #if UNITY_REVERSED_Z
  51. #define DEPTH_DEFAULT_VALUE 1.0
  52. #define DEPTH_OP min
  53. #else
  54. #define DEPTH_DEFAULT_VALUE 0.0
  55. #define DEPTH_OP max
  56. #endif
  57. float SampleDepth(float2 uv)
  58. {
  59. #ifdef _DEPTH_NO_MSAA
  60. return SAMPLE(uv);
  61. #else
  62. int2 coord = int2(uv * _CameraDepthAttachment_TexelSize.zw);
  63. float outDepth = DEPTH_DEFAULT_VALUE;
  64. UNITY_UNROLL
  65. for (int i = 0; i < MSAA_SAMPLES; ++i)
  66. outDepth = DEPTH_OP(LOAD(coord, i), outDepth);
  67. return outDepth;
  68. #endif
  69. }
  70. float frag(Varyings input) : SV_Depth
  71. {
  72. UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
  73. UNITY_SETUP_INSTANCE_ID(input);
  74. return SampleDepth(input.uv);
  75. }
  76. #endif