blob: 1cd1b8ee83a37871945e804669a4a5abc58b8c0f (
plain)
1
2
3
4
5
6
7
|
//TEST:SIMPLE(filecheck=CHECK): -target spirv -entry main -stage fragment -fvk-use-dx-position-w -emit-spirv-directly
// CHECK: OpFDiv
float4 main(float4 pos : SV_Position) : SV_Target
{
return pos;
}
|