2014-04-19 12:38:57 -04:00
|
|
|
#ifdef UBO_DISABLED
|
|
|
|
uniform mat4 ViewMatrix;
|
|
|
|
uniform mat4 ProjectionMatrix;
|
|
|
|
uniform mat4 InverseViewMatrix;
|
|
|
|
uniform mat4 InverseProjectionMatrix;
|
|
|
|
#else
|
2014-04-08 17:34:28 -04:00
|
|
|
layout (std140) uniform MatrixesData
|
|
|
|
{
|
|
|
|
mat4 ViewMatrix;
|
|
|
|
mat4 ProjectionMatrix;
|
|
|
|
mat4 InverseViewMatrix;
|
|
|
|
mat4 InverseProjectionMatrix;
|
|
|
|
mat4 ShadowViewProjMatrixes[4];
|
|
|
|
};
|
2014-04-19 12:38:57 -04:00
|
|
|
#endif
|
2014-03-16 11:26:38 -04:00
|
|
|
|
|
|
|
in vec3 Origin;
|
|
|
|
in vec3 Orientation;
|
2014-03-31 12:10:45 -04:00
|
|
|
in vec3 Scale;
|
2014-03-16 11:26:38 -04:00
|
|
|
|
|
|
|
in vec3 Position;
|
|
|
|
in vec3 Normal;
|
2014-03-23 14:28:07 -04:00
|
|
|
in vec2 Texcoord;
|
|
|
|
|
2014-03-16 11:26:38 -04:00
|
|
|
out vec3 nor;
|
2014-03-23 14:28:07 -04:00
|
|
|
out vec2 uv;
|
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-03-23 14:28:07 -04:00
|
|
|
uv = Texcoord;
|
2014-03-16 11:26:38 -04:00
|
|
|
}
|