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 #2913 from greg-lunarg/i2905
[platform/upstream/glslang.git]
/
Test
/
hlsl.PointSize.geom
1
struct S {
2
[[vk::builtin("PointSize")]] float ps : PSIZE;
3
};
4
5
[maxvertexcount(4)]
6
void main([[vk::builtin("PointSize")]] triangle in uint ps[3],
7
inout LineStream<S> OutputStream)
8
{
9
S s;
10
OutputStream.Append(s);
11
}