incompletePos.hlsl 186 B

12345678
  1. // RUN: %dxc -E main -T vs_6_0 %s| FileCheck %s
  2. // CHECK: Not all elements of SV_Position were written
  3. float4 main(float4 a : A, out float4 pos: SV_POSITION ) : COLOR
  4. {
  5. return 2.3;
  6. }