Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git] / Test / hlsl.pp.line.frag
blob6f0273dcb2d9adb50c9ce0a755d370f904e5574a
2 #line 1
4 struct PS_OUTPUT
6     float4 Color : SV_Target0;
7     float  Depth : SV_Depth;
8 };
10 #line 2
12 PS_OUTPUT main()
14    PS_OUTPUT psout;
16 #line 123 "SomeFile.frag"
18    int thisLineIs = __LINE__;  // gets 124
20    psout.Color = float4(thisLineIs, 0, 0, 1);
21    psout.Depth = 1.0;
23    return psout;