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 #2892 from greg-lunarg/mb
[platform/upstream/glslang.git]
/
Test
/
hlsl.y-negate-3.vert
1
// Test Y negation from entry point out parameter
2
3
float4 position;
4
5
struct VS_OUT {
6
float4 pos : SV_Position;
7
int somethingelse;
8
};
9
10
VS_OUT main()
11
{
12
VS_OUT vsout;
13
14
vsout.pos = position;
15
vsout.somethingelse = 42;
16
17
return vsout;
18
}