mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-20 18:28:06 +00:00
12 lines
223 B
Plaintext
12 lines
223 B
Plaintext
|
struct S {
|
||
|
[[vk::builtin("PointSize")]] float ps;
|
||
|
};
|
||
|
|
||
|
[maxvertexcount(4)]
|
||
|
void main([[vk::builtin("PointSize")]] triangle in uint ps[3],
|
||
|
inout LineStream<S> OutputStream)
|
||
|
{
|
||
|
S s;
|
||
|
OutputStream.Append(s);
|
||
|
}
|