8 lines
84 B
GLSL
8 lines
84 B
GLSL
#version 140
|
|
|
|
in vec3 vertex;
|
|
|
|
void main() {
|
|
gl_Position = vec4(vertex, 1.0);
|
|
}
|