You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
252 B
15 lines
252 B
4 months ago
|
#version 450
|
||
|
|
||
|
layout(xfb_buffer = 1, xfb_stride = 64) out;
|
||
|
|
||
|
layout (xfb_buffer = 1, xfb_offset = 16) out gl_PerVertex
|
||
|
{
|
||
|
float gl_PointSize;
|
||
|
vec4 gl_Position;
|
||
|
};
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = vec4(1.0);
|
||
|
gl_PointSize = 2.0;
|
||
|
}
|