9 lines
150 B
GLSL
9 lines
150 B
GLSL
#version 330 core
|
|
|
|
layout (location = 0) in vec3 inputVertex;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(inputVertex.x, inputVertex.y, inputVertex.z, 1.0);
|
|
}
|