2
0

ShadowCasterPass.hlsl 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef UNIVERSAL_SHADOW_CASTER_PASS_INCLUDED
  2. #define UNIVERSAL_SHADOW_CASTER_PASS_INCLUDED
  3. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  4. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Shadows.hlsl"
  5. float3 _LightDirection;
  6. struct Attributes
  7. {
  8. float4 positionOS : POSITION;
  9. float3 normalOS : NORMAL;
  10. float2 texcoord : TEXCOORD0;
  11. UNITY_VERTEX_INPUT_INSTANCE_ID
  12. };
  13. struct Varyings
  14. {
  15. float2 uv : TEXCOORD0;
  16. float4 positionCS : SV_POSITION;
  17. };
  18. float4 GetShadowPositionHClip(Attributes input)
  19. {
  20. float3 positionWS = TransformObjectToWorld(input.positionOS.xyz);
  21. float3 normalWS = TransformObjectToWorldNormal(input.normalOS);
  22. float4 positionCS = TransformWorldToHClip(ApplyShadowBias(positionWS, normalWS, _LightDirection));
  23. #if UNITY_REVERSED_Z
  24. positionCS.z = min(positionCS.z, positionCS.w * UNITY_NEAR_CLIP_VALUE);
  25. #else
  26. positionCS.z = max(positionCS.z, positionCS.w * UNITY_NEAR_CLIP_VALUE);
  27. #endif
  28. return positionCS;
  29. }
  30. Varyings ShadowPassVertex(Attributes input)
  31. {
  32. Varyings output;
  33. UNITY_SETUP_INSTANCE_ID(input);
  34. output.uv = TRANSFORM_TEX(input.texcoord, _BaseMap);
  35. output.positionCS = GetShadowPositionHClip(input);
  36. return output;
  37. }
  38. half4 ShadowPassFragment(Varyings input) : SV_TARGET
  39. {
  40. Alpha(SampleAlbedoAlpha(input.uv, TEXTURE2D_ARGS(_BaseMap, sampler_BaseMap)).a, _BaseColor, _Cutoff);
  41. return 0;
  42. }
  43. #endif