mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
12 lines
197 B
GLSL
12 lines
197 B
GLSL
#version 450 core
|
|
|
|
layout(triangles) in;
|
|
|
|
layout(line_strip) out;
|
|
layout(max_vertices = 127) out;
|
|
layout(invocations = 4) in;
|
|
|
|
void main()
|
|
{
|
|
gl_PointSize = gl_in[1].gl_PointSize;
|
|
}
|