8 lines
72 B
GLSL
8 lines
72 B
GLSL
#version 440
|
|
|
|
in vec3 v;
|
|
|
|
void main ()
|
|
{
|
|
gl_Position = vec4(v, 1);
|
|
} |