projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git]
/
Test
/
spv.noDeadDecorations.vert
1
#version 310 es
2
precision mediump float;
3
4
float func(float a)
5
{
6
return -a;
7
a = a * -1.0;
8
}
9
10
void main()
11
{
12
gl_Position.x = func(0.0);
13
}