2014-07-13 12:48:14 -04:00
|
|
|
uniform vec3 windDir;
|
|
|
|
uniform mat4 ModelMatrix;
|
|
|
|
uniform mat4 InverseModelMatrix;
|
2014-02-28 11:29:05 -05:00
|
|
|
|
2017-02-01 15:58:10 -05:00
|
|
|
#ifdef Explicit_Attrib_Location_Usable
|
2014-06-24 17:17:41 -04:00
|
|
|
layout(location = 0) in vec3 Position;
|
|
|
|
layout(location = 1) in vec3 Normal;
|
|
|
|
layout(location = 2) in vec4 Color;
|
|
|
|
layout(location = 3) in vec2 Texcoord;
|
2014-06-27 12:14:24 -04:00
|
|
|
#else
|
|
|
|
in vec3 Position;
|
|
|
|
in vec3 Normal;
|
|
|
|
in vec4 Color;
|
|
|
|
in vec2 Texcoord;
|
|
|
|
#endif
|
2014-06-24 17:17:41 -04:00
|
|
|
|
2014-02-28 11:29:05 -05:00
|
|
|
out vec3 nor;
|
2014-01-19 14:38:05 -05:00
|
|
|
out vec2 uv;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2016-12-03 02:54:59 -05:00
|
|
|
|
2017-08-09 01:00:09 -04:00
|
|
|
vec3 test = sin(windDir * (Position.y * 0.1)) * 1.;
|
2017-03-12 16:35:48 -04:00
|
|
|
test += cos(windDir) * 0.7;
|
|
|
|
|
2016-12-03 02:54:59 -05:00
|
|
|
mat4 new_model_matrix = ModelMatrix;
|
|
|
|
mat4 new_inverse_model_matrix = InverseModelMatrix;
|
2017-03-12 16:35:48 -04:00
|
|
|
new_model_matrix[3].xyz += test * Color.r;
|
2016-12-03 02:54:59 -05:00
|
|
|
|
|
|
|
// FIXME doesn't seem to make too much difference in pass 2, because this
|
|
|
|
// affects "nor" which is later only * 0.1 by scattering
|
2017-03-12 16:35:48 -04:00
|
|
|
new_inverse_model_matrix[3].xyz -= test * Color.r;
|
2016-12-03 02:54:59 -05:00
|
|
|
|
2017-12-25 01:00:10 -05:00
|
|
|
mat4 ModelViewProjectionMatrix = u_projection_view_matrix * new_model_matrix;
|
|
|
|
mat4 TransposeInverseModelView = transpose(u_inverse_view_matrix * new_inverse_model_matrix);
|
2016-12-03 02:54:59 -05:00
|
|
|
gl_Position = ModelViewProjectionMatrix * vec4(Position, 1.);
|
|
|
|
nor = (TransposeInverseModelView * vec4(Normal, 0.)).xyz;
|
2014-07-13 12:48:14 -04:00
|
|
|
uv = Texcoord;
|
2014-01-19 14:38:05 -05:00
|
|
|
}
|