xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.debuginfo.multiline.glsl.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#version 460
2
3in float inx;
4out float outx;
5
6float add(float x, float y, float z) {
7    return
8        x
9        +
10        y
11        +
12        z
13    ;
14}
15
16void main() {
17    outx
18        =
19        add(
20            inx+1,
21            inx+2,
22            inx+3
23        )
24    ;
25}