stk-code_catmod/data/shaders/object_pass.vert

58 lines
1.3 KiB
GLSL
Raw Normal View History

#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
};
#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.);
#if __VERSION__ >= 130
in vec3 Position;
in vec2 Texcoord;
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;
out vec2 uv;
out vec2 uv_bis;
2014-04-10 11:34:57 -04:00
out vec4 color;
#else
attribute vec3 Position;
2014-03-26 13:12:05 -04:00
attribute vec3 Normal;
attribute vec2 Texcoord;
attribute vec2 SecondTexcoord;
2014-03-26 13:12:05 -04:00
varying vec3 nor;
varying vec2 uv;
varying vec2 uv_bis;
#endif
void main(void)
{
2014-04-10 11:34:57 -04:00
color = Color.zyxw;
mat4 ModelViewProjectionMatrix = ProjectionMatrix * ViewMatrix * ModelMatrix;
mat4 TransposeInverseModelView = transpose(InverseModelMatrix * InverseViewMatrix);
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;
}