gtk-graph-view/lib/shaders/passthrough3d.vertex.glsl

9 lines
150 B
Plaintext
Raw Permalink Normal View History

2020-06-27 22:08:34 +02:00
#version 330 core
layout (location = 0) in vec3 inputVertex;
void main()
{
gl_Position = vec4(inputVertex.x, inputVertex.y, inputVertex.z, 1.0);
}