SpeedTree7CommonPasses.hlsl 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. #ifndef UNIVERSAL_SPEEDTREE7COMMON_PASSES_INCLUDED
  2. #define UNIVERSAL_SPEEDTREE7COMMON_PASSES_INCLUDED
  3. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Lighting.hlsl"
  4. struct SpeedTreeVertexInput
  5. {
  6. float4 vertex : POSITION;
  7. float3 normal : NORMAL;
  8. float4 tangent : TANGENT;
  9. float4 texcoord : TEXCOORD0;
  10. float4 texcoord1 : TEXCOORD1;
  11. float4 texcoord2 : TEXCOORD2;
  12. float2 texcoord3 : TEXCOORD3;
  13. half4 color : COLOR;
  14. UNITY_VERTEX_INPUT_INSTANCE_ID
  15. };
  16. struct SpeedTreeVertexOutput
  17. {
  18. #ifdef VERTEX_COLOR
  19. half4 color : COLOR;
  20. #endif
  21. half3 uvHueVariation : TEXCOORD0;
  22. #ifdef GEOM_TYPE_BRANCH_DETAIL
  23. half3 detail : TEXCOORD1;
  24. #endif
  25. half4 fogFactorAndVertexLight : TEXCOORD2; // x: fogFactor, yzw: vertex light
  26. #ifdef EFFECT_BUMP
  27. half4 normalWS : TEXCOORD3; // xyz: normal, w: viewDir.x
  28. half4 tangentWS : TEXCOORD4; // xyz: tangent, w: viewDir.y
  29. half4 bitangentWS : TEXCOORD5; // xyz: bitangent, w: viewDir.z
  30. #else
  31. half3 normalWS : TEXCOORD3;
  32. half3 viewDirWS : TEXCOORD4;
  33. #endif
  34. #ifdef _MAIN_LIGHT_SHADOWS
  35. float4 shadowCoord : TEXCOORD6;
  36. #endif
  37. float3 positionWS : TEXCOORD7;
  38. float4 clipPos : SV_POSITION;
  39. UNITY_VERTEX_INPUT_INSTANCE_ID
  40. UNITY_VERTEX_OUTPUT_STEREO
  41. };
  42. struct SpeedTreeVertexDepthOutput
  43. {
  44. half3 uvHueVariation : TEXCOORD0;
  45. float4 clipPos : SV_POSITION;
  46. UNITY_VERTEX_INPUT_INSTANCE_ID
  47. UNITY_VERTEX_OUTPUT_STEREO
  48. };
  49. void InitializeInputData(SpeedTreeVertexOutput input, half3 normalTS, out InputData inputData)
  50. {
  51. inputData.positionWS = input.positionWS.xyz;
  52. #ifdef EFFECT_BUMP
  53. inputData.normalWS = TransformTangentToWorld(normalTS, half3x3(input.tangentWS.xyz, input.bitangentWS.xyz, input.normalWS.xyz));
  54. inputData.normalWS = NormalizeNormalPerPixel(inputData.normalWS);
  55. inputData.viewDirectionWS = half3(input.normalWS.w, input.tangentWS.w, input.bitangentWS.w);
  56. #else
  57. inputData.normalWS = NormalizeNormalPerPixel(input.normalWS);
  58. inputData.viewDirectionWS = input.viewDirWS;
  59. #endif
  60. #if SHADER_HINT_NICE_QUALITY
  61. inputData.viewDirectionWS = SafeNormalize(inputData.viewDirectionWS);
  62. #endif
  63. #if defined(REQUIRES_VERTEX_SHADOW_COORD_INTERPOLATOR)
  64. inputData.shadowCoord = input.shadowCoord;
  65. #elif defined(MAIN_LIGHT_CALCULATE_SHADOWS)
  66. inputData.shadowCoord = TransformWorldToShadowCoord(inputData.positionWS);
  67. #else
  68. inputData.shadowCoord = float4(0, 0, 0, 0);
  69. #endif
  70. inputData.fogCoord = input.fogFactorAndVertexLight.x;
  71. inputData.vertexLighting = input.fogFactorAndVertexLight.yzw;
  72. inputData.bakedGI = half3(0, 0, 0); // No GI currently.
  73. }
  74. half4 SpeedTree7Frag(SpeedTreeVertexOutput input) : SV_Target
  75. {
  76. UNITY_SETUP_INSTANCE_ID(input);
  77. #if !defined(SHADER_QUALITY_LOW)
  78. #ifdef LOD_FADE_CROSSFADE // enable dithering LOD transition if user select CrossFade transition in LOD group
  79. LODDitheringTransition(input.clipPos.xy, unity_LODFade.x);
  80. #endif
  81. #endif
  82. half2 uv = input.uvHueVariation.xy;
  83. half4 diffuse = SampleAlbedoAlpha(uv, TEXTURE2D_ARGS(_MainTex, sampler_MainTex));
  84. diffuse.a *= _Color.a;
  85. #ifdef SPEEDTREE_ALPHATEST
  86. clip(diffuse.a - _Cutoff);
  87. #endif
  88. half3 diffuseColor = diffuse.rgb;
  89. #ifdef GEOM_TYPE_BRANCH_DETAIL
  90. half4 detailColor = tex2D(_DetailTex, input.detail.xy);
  91. diffuseColor.rgb = lerp(diffuseColor.rgb, detailColor.rgb, input.detail.z < 2.0f ? saturate(input.detail.z) : detailColor.a);
  92. #endif
  93. #ifdef EFFECT_HUE_VARIATION
  94. half3 shiftedColor = lerp(diffuseColor.rgb, _HueVariation.rgb, input.uvHueVariation.z);
  95. half maxBase = max(diffuseColor.r, max(diffuseColor.g, diffuseColor.b));
  96. half newMaxBase = max(shiftedColor.r, max(shiftedColor.g, shiftedColor.b));
  97. maxBase /= newMaxBase;
  98. maxBase = maxBase * 0.5f + 0.5f;
  99. // preserve vibrance
  100. shiftedColor.rgb *= maxBase;
  101. diffuseColor.rgb = saturate(shiftedColor);
  102. #endif
  103. #ifdef EFFECT_BUMP
  104. half3 normalTs = SampleNormal(uv, TEXTURE2D_ARGS(_BumpMap, sampler_BumpMap));
  105. #ifdef GEOM_TYPE_BRANCH_DETAIL
  106. half3 detailNormal = SampleNormal(input.detail.xy, TEXTURE2D_ARGS(_BumpMap, sampler_BumpMap));
  107. normalTs = lerp(normalTs, detailNormal, input.detail.z < 2.0f ? saturate(input.detail.z) : detailColor.a);
  108. #endif
  109. #else
  110. half3 normalTs = half3(0, 0, 1);
  111. #endif
  112. InputData inputData;
  113. InitializeInputData(input, normalTs, inputData);
  114. #ifdef VERTEX_COLOR
  115. diffuseColor.rgb *= input.color.rgb;
  116. #else
  117. diffuseColor.rgb *= _Color.rgb;
  118. #endif
  119. half4 color = UniversalFragmentBlinnPhong(inputData, diffuseColor.rgb, half4(0, 0, 0, 0), 0, 0, diffuse.a);
  120. color.rgb = MixFog(color.rgb, inputData.fogCoord);
  121. return color;
  122. }
  123. half4 SpeedTree7FragDepth(SpeedTreeVertexDepthOutput input) : SV_Target
  124. {
  125. UNITY_SETUP_INSTANCE_ID(input);
  126. #if !defined(SHADER_QUALITY_LOW)
  127. #ifdef LOD_FADE_CROSSFADE // enable dithering LOD transition if user select CrossFade transition in LOD group
  128. LODDitheringTransition(input.clipPos.xy, unity_LODFade.x);
  129. #endif
  130. #endif
  131. half2 uv = input.uvHueVariation.xy;
  132. half4 diffuse = SampleAlbedoAlpha(uv, TEXTURE2D_ARGS(_MainTex, sampler_MainTex));
  133. diffuse.a *= _Color.a;
  134. #ifdef SPEEDTREE_ALPHATEST
  135. clip(diffuse.a - _Cutoff);
  136. #endif
  137. #if defined(SCENESELECTIONPASS)
  138. // We use depth prepass for scene selection in the editor, this code allow to output the outline correctly
  139. return half4(_ObjectId, _PassValue, 1.0, 1.0);
  140. #else
  141. return half4(0, 0, 0, 0);
  142. #endif
  143. }
  144. #endif