mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
788fbeb36f
Fixes #1188.
12 lines
231 B
GLSL
12 lines
231 B
GLSL
struct S {
|
|
[[vk::builtin("PointSize")]] float ps : PSIZE;
|
|
};
|
|
|
|
[maxvertexcount(4)]
|
|
void main([[vk::builtin("PointSize")]] triangle in uint ps[3],
|
|
inout LineStream<S> OutputStream)
|
|
{
|
|
S s;
|
|
OutputStream.Append(s);
|
|
}
|