2
0

constoperand1.hlsl 198 B

1234567891011
  1. // RUN: %fxc /T vs_5_0 %s /Fo %t.dxbc
  2. // RUN: %dxbc2dxil %t.dxbc /emit-llvm /o %t.ll.converted
  3. // RUN: fc %b.ref %t.ll.converted
  4. float4 main() : SV_POSITION
  5. {
  6. return float4(3,0,0.5,0.12345);
  7. }