12 lines
137 B
GLSL
12 lines
137 B
GLSL
#version 460
|
|
|
|
out gl_PerVertex
|
|
{
|
|
vec4 gl_Position;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(gl_BaseVertex, gl_BaseInstance, 0, 1);
|
|
}
|