2014-01-03 16:46:41 +00:00
|
|
|
#version 330
|
2014-01-02 02:35:38 +00:00
|
|
|
|
2014-01-03 02:01:54 +00:00
|
|
|
//constant projection matrix
|
2014-01-02 02:35:38 +00:00
|
|
|
uniform mat4 fg_ProjectionMatrix;
|
2014-01-04 13:09:42 +00:00
|
|
|
uniform mat4 fg_ModelMatrix;
|
2014-01-02 02:35:38 +00:00
|
|
|
|
2014-01-03 02:01:54 +00:00
|
|
|
//vertex-data
|
2014-01-04 13:09:42 +00:00
|
|
|
in vec4 fg_Color;
|
2014-01-03 16:46:41 +00:00
|
|
|
in vec3 fg_VertexIn;
|
2014-01-04 01:53:12 +00:00
|
|
|
//in vec3 fg_Normal;
|
2014-01-02 02:35:38 +00:00
|
|
|
|
2014-01-03 02:01:54 +00:00
|
|
|
//output-data for later stages
|
2014-01-04 13:09:42 +00:00
|
|
|
smooth out vec4 fg_SmoothColor;
|
2014-01-02 02:35:38 +00:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2014-01-03 16:46:41 +00:00
|
|
|
//transform vec3 into vec4, setting w to 1
|
|
|
|
vec4 fg_Vertex = vec4(fg_VertexIn, 1.0);
|
2014-01-04 13:09:42 +00:00
|
|
|
fg_SmoothColor = fg_Color;
|
|
|
|
// + 0.001* fg_Normal.xyzx;
|
|
|
|
gl_Position = fg_ProjectionMatrix * fg_ModelMatrix * fg_Vertex;
|
2014-01-02 02:35:38 +00:00
|
|
|
}
|