xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/hlsl.y-negate-2.vert (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1// Test Y negation from entry point out parameter
2
3float4 pos;
4
5void main(out float4 position : SV_Position)
6{
7    position = pos;
8}
9