lib_entries3.hlsl 164 B

123456789
  1. // Make sure include works for lib share compile.
  2. #include "lib_inc.hlsl"
  3. // PS
  4. [shader("pixel")]
  5. float4 ps_main() : SV_TARGET
  6. {
  7. return a + b + c + d + e + M;
  8. }