xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.simpleFunctionCall.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#version 150
2
3in vec4 BaseColor;
4
5vec4 foo()
6{
7    return BaseColor;
8}
9
10void main()
11{
12    gl_FragColor = foo();
13}
14