summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.simpleFunctionCall.frag
blob: 7513ce317e1019b2c83bdac7ca49419ba493d348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 150

in vec4 BaseColor;

vec4 foo()
{
    return BaseColor;
}

void main()
{
    gl_FragColor = foo();
}