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-10 11:34:57 -04:00
|
|
|
layout (std140) uniform MatrixesData
|
|
|
|
{
|
|
|
|
mat4 ViewMatrix;
|
|
|
|
mat4 ProjectionMatrix;
|
|
|
|
mat4 InverseViewMatrix;
|
|
|
|
mat4 InverseProjectionMatrix;
|
|
|
|
mat4 ShadowViewProjMatrixes[4];
|
2014-05-16 20:39:55 -04:00
|
|
|
vec2 screen;
|
2014-04-10 11:34:57 -04:00
|
|
|
};
|
2014-04-19 12:38:57 -04:00
|
|
|
#endif
|
2014-04-10 11:34:57 -04:00
|
|
|
|
|
|
|
uniform mat4 ModelMatrix;
|
|
|
|
uniform mat4 InverseModelMatrix;
|
|
|
|
|
2014-02-26 19:13:23 -05:00
|
|
|
uniform mat4 TextureMatrix =
|
|
|
|
mat4(1., 0., 0., 0.,
|
|
|
|
0., 1., 0., 0.,
|
|
|
|
0., 0., 1., 0.,
|
|
|
|
0., 0., 0., 1.);
|
2014-01-11 17:57:48 -05:00
|
|
|
|
2014-02-28 11:29:05 -05:00
|
|
|
#if __VERSION__ >= 130
|
2014-01-11 17:57:48 -05:00
|
|
|
in vec3 Position;
|
2014-01-11 19:26:18 -05:00
|
|
|
in vec2 Texcoord;
|
2014-01-25 19:33:13 -05:00
|
|
|
in vec2 SecondTexcoord;
|
2014-03-26 13:12:05 -04:00
|
|
|
in vec3 Normal;
|
2014-04-10 11:34:57 -04:00
|
|
|
in vec4 Color;
|
2014-03-26 13:12:05 -04:00
|
|
|
out vec3 nor;
|
2014-01-11 19:26:18 -05:00
|
|
|
out vec2 uv;
|
2014-01-25 19:33:13 -05:00
|
|
|
out vec2 uv_bis;
|
2014-04-10 11:34:57 -04:00
|
|
|
out vec4 color;
|
2014-02-28 11:29:05 -05:00
|
|
|
#else
|
|
|
|
attribute vec3 Position;
|
2014-03-26 13:12:05 -04:00
|
|
|
attribute vec3 Normal;
|
2014-02-28 11:29:05 -05:00
|
|
|
attribute vec2 Texcoord;
|
|
|
|
attribute vec2 SecondTexcoord;
|
2014-03-26 13:12:05 -04:00
|
|
|
varying vec3 nor;
|
2014-02-28 11:29:05 -05:00
|
|
|
varying vec2 uv;
|
|
|
|
varying vec2 uv_bis;
|
|
|
|
#endif
|
|
|
|
|
2014-01-11 17:57:48 -05:00
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
2014-04-10 11:34:57 -04:00
|
|
|
color = Color.zyxw;
|
|
|
|
mat4 ModelViewProjectionMatrix = ProjectionMatrix * ViewMatrix * ModelMatrix;
|
|
|
|
mat4 TransposeInverseModelView = transpose(InverseModelMatrix * InverseViewMatrix);
|
2014-01-11 17:57:48 -05:00
|
|
|
gl_Position = ModelViewProjectionMatrix * vec4(Position, 1.);
|
2014-03-26 13:12:05 -04:00
|
|
|
nor = (TransposeInverseModelView * vec4(Normal, 0.)).xyz;
|
|
|
|
uv = (TextureMatrix * vec4(Texcoord, 1., 1.)).xy;
|
|
|
|
uv_bis = SecondTexcoord;
|
2014-01-11 17:57:48 -05:00
|
|
|
}
|