2
0

SimpleLitInput.hlsl 1022 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef UNIVERSAL_SIMPLE_LIT_INPUT_INCLUDED
  2. #define UNIVERSAL_SIMPLE_LIT_INPUT_INCLUDED
  3. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  4. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/SurfaceInput.hlsl"
  5. CBUFFER_START(UnityPerMaterial)
  6. float4 _BaseMap_ST;
  7. half4 _BaseColor;
  8. half4 _SpecColor;
  9. half4 _EmissionColor;
  10. half _Cutoff;
  11. CBUFFER_END
  12. TEXTURE2D(_SpecGlossMap); SAMPLER(sampler_SpecGlossMap);
  13. half4 SampleSpecularSmoothness(half2 uv, half alpha, half4 specColor, TEXTURE2D_PARAM(specMap, sampler_specMap))
  14. {
  15. half4 specularSmoothness = half4(0.0h, 0.0h, 0.0h, 1.0h);
  16. #ifdef _SPECGLOSSMAP
  17. specularSmoothness = SAMPLE_TEXTURE2D(specMap, sampler_specMap, uv) * specColor;
  18. #elif defined(_SPECULAR_COLOR)
  19. specularSmoothness = specColor;
  20. #endif
  21. #ifdef _GLOSSINESS_FROM_BASE_ALPHA
  22. specularSmoothness.a = exp2(10 * alpha + 1);
  23. #else
  24. specularSmoothness.a = exp2(10 * specularSmoothness.a + 1);
  25. #endif
  26. return specularSmoothness;
  27. }
  28. #endif