charcoal/shaders/MyBasicVS.glsl
elipzer 7cbe8acf30 Libraries Work!
Now the code is being compiled through .lib files!
2018-10-11 01:26:24 -04:00

6 lines
96 B
GLSL

#version 400
in vec3 vertex_position;
void main()
{
gl_Position = vec4(vertex_position, 1.0);
}