9 lines
No EOL
129 B
GLSL
Executable file
9 lines
No EOL
129 B
GLSL
Executable file
#version 450
|
|
|
|
uniform mat4 projection;
|
|
|
|
in vec3 vertices;
|
|
|
|
void main() {
|
|
gl_Position = projection * vec4(vertices, 1);
|
|
} |