Revision f8c1c6834e3c7da57d0cae114735f1cf643b0498 authored by Nico Schertler on 09 July 2018, 14:15:39 UTC, committed by Nico Schertler on 09 July 2018, 14:15:39 UTC
1 parent 722a9f4
cylinder.vert
#version 330
in vec3 position;
in vec4 color;
out vData
{
vec3 pos;
vec4 color;
} vertex;
uniform mat4 mv;
void main()
{
vertex.pos = position;
vertex.color = color;
}
Computing file changes ...