ShadowCasterPass.hlsl 660 B

1234567891011121314151617181920212223242526
  1. #ifndef SG_SHADOW_PASS_INCLUDED
  2. #define SG_SHADOW_PASS_INCLUDED
  3. PackedVaryings vert(Attributes input)
  4. {
  5. Varyings output = (Varyings)0;
  6. output = BuildVaryings(input);
  7. PackedVaryings packedOutput = (PackedVaryings)0;
  8. packedOutput = PackVaryings(output);
  9. return packedOutput;
  10. }
  11. half4 frag(PackedVaryings packedInput) : SV_TARGET
  12. {
  13. Varyings unpacked = UnpackVaryings(packedInput);
  14. UNITY_SETUP_INSTANCE_ID(unpacked);
  15. SurfaceDescription surfaceDescription = BuildSurfaceDescription(unpacked);
  16. #if _ALPHATEST_ON
  17. clip(surfaceDescription.Alpha - surfaceDescription.AlphaClipThreshold);
  18. #endif
  19. return 0;
  20. }
  21. #endif