functionAttribute.hlsl 200 B

1234567
  1. // RUN: %dxc -E main -T ps_6_2 -denorm ftz %s | FileCheck %s
  2. // CHECK: @main
  3. // CHECK: attributes #{{.*}} = { "fp32-denorm-mode"="ftz" }
  4. float4 main(float4 col : COL) : SV_Target {
  5. return col;
  6. }