summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.noDeadDecorations.vert
blob: 88984970b5334a71e5e60d7c461e62ab99351095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 310 es
precision mediump float;

float func(float a)
{
    return -a;
    a = a * -1.0;
}

void main()
{
    gl_Position.x = func(0.0);
}