2014-06-27 12:14:24 -04:00
|
|
|
#if __VERSION__ >= 330
|
2014-06-24 17:17:41 -04:00
|
|
|
layout(location = 0) in vec3 Position;
|
|
|
|
layout(location = 1) in vec3 Normal;
|
2014-06-28 17:42:19 -04:00
|
|
|
layout(location = 2) in vec4 Color;
|
2014-06-24 17:17:41 -04:00
|
|
|
layout(location = 3) in vec2 Texcoord;
|
2014-08-13 13:20:40 -04:00
|
|
|
layout(location = 5) in vec3 Tangent;
|
|
|
|
layout(location = 6) in vec3 Bitangent;
|
2014-06-29 16:19:10 -04:00
|
|
|
|
|
|
|
layout(location = 7) in vec3 Origin;
|
|
|
|
layout(location = 8) in vec3 Orientation;
|
|
|
|
layout(location = 9) in vec3 Scale;
|
2014-06-27 12:14:24 -04:00
|
|
|
#else
|
|
|
|
in vec3 Position;
|
|
|
|
in vec3 Normal;
|
2014-06-28 17:42:19 -04:00
|
|
|
in vec4 Color;
|
2014-06-27 12:14:24 -04:00
|
|
|
in vec2 Texcoord;
|
2014-06-29 16:19:10 -04:00
|
|
|
|
|
|
|
in vec3 Origin;
|
|
|
|
in vec3 Orientation;
|
|
|
|
in vec3 Scale;
|
2014-06-27 12:14:24 -04:00
|
|
|
#endif
|
2014-03-23 14:28:07 -04:00
|
|
|
|
2014-03-16 11:26:38 -04:00
|
|
|
out vec3 nor;
|
2014-08-13 13:20:40 -04:00
|
|
|
out vec3 tangent;
|
|
|
|
out vec3 bitangent;
|
2014-03-23 14:28:07 -04:00
|
|
|
out vec2 uv;
|
2014-06-28 17:42:19 -04:00
|
|
|
out vec4 color;
|
2014-03-16 11:26:38 -04:00
|
|
|
|
2014-03-31 12:10:45 -04:00
|
|
|
mat4 getWorldMatrix(vec3 translation, vec3 rotation, vec3 scale);
|
|
|
|
mat4 getInverseWorldMatrix(vec3 translation, vec3 rotation, vec3 scale);
|
2014-03-28 20:22:08 -04:00
|
|
|
|
2014-03-16 11:26:38 -04:00
|
|
|
void main(void)
|
|
|
|
{
|
2014-03-31 12:10:45 -04:00
|
|
|
mat4 ModelMatrix = getWorldMatrix(Origin, Orientation, Scale);
|
|
|
|
mat4 TransposeInverseModelView = transpose(getInverseWorldMatrix(Origin, Orientation, Scale) * InverseViewMatrix);
|
2014-04-08 17:34:28 -04:00
|
|
|
gl_Position = ProjectionMatrix * ViewMatrix * ModelMatrix * vec4(Position, 1.);
|
2014-03-16 11:26:38 -04:00
|
|
|
nor = (TransposeInverseModelView * vec4(Normal, 0.)).xyz;
|
2014-08-13 13:20:40 -04:00
|
|
|
tangent = (TransposeInverseModelView * vec4(Tangent, 1.)).xyz;
|
|
|
|
bitangent = (TransposeInverseModelView * vec4(Bitangent, 1.)).xyz;
|
2014-03-23 14:28:07 -04:00
|
|
|
uv = Texcoord;
|
2014-06-28 17:42:19 -04:00
|
|
|
color = Color.zyxw;
|
2014-03-16 11:26:38 -04:00
|
|
|
}
|