xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/hlsl.target.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1struct PSInput {
2  float interp;
3  uint no_interp;
4};
5
6void main(PSInput input : INPUT, out float4 out1 : SV_TARGET1, out float4 out2 : SV_TARGET3)
7{
8    out1 = 1;
9    out2 = 0;
10}