Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git] / Test / spv.unit3.frag
1 #version 460
2
3 float f;
4 float h3 = 3.0;
5
6 out float cout;
7 in float cin;
8
9 float bar()
10 {
11     h3 *= f;
12     float g3 = 2 * h3;
13     cout = g3;
14     return h3 + g3 + gl_FragCoord.y;
15 }