暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NormalsRenderingShared.hlsl 435B

12345678910111213141516
  1. #if !defined(NORMALS_RENDERING_PASS)
  2. #define NORMALS_RENDERING_PASS
  3. half4 NormalsRenderingShared(half4 color, half3 normalTS, half3 tangent, half3 bitangent, half3 normal)
  4. {
  5. half4 normalColor;
  6. half3 normalWS = TransformTangentToWorld(normalTS, half3x3(tangent.xyz, bitangent.xyz, normal.xyz));
  7. normalColor.rgb = 0.5 * ((normalWS)+1);
  8. normalColor.a = color.a; // used for blending
  9. return normalColor;
  10. }
  11. #endif