blob: ef66fc891437bb3f1b40c159b7d53f1dd0e47b28 [file] [log] [blame]
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);
}