2021-04-10 09:14:16 +00:00
|
|
|
#version 330 core
|
|
|
|
|
|
|
|
layout(location = 0) in vec4 pos;
|
|
|
|
layout(location = 1) in vec3 normal;
|
2023-04-07 06:17:37 +00:00
|
|
|
layout(location = 3) in vec4 multitexcoord0;
|
2021-04-10 09:14:16 +00:00
|
|
|
|
2023-04-17 03:09:24 +00:00
|
|
|
out VS_OUT {
|
|
|
|
vec2 texcoord;
|
|
|
|
vec3 vertex_normal;
|
|
|
|
vec3 view_vector;
|
|
|
|
} vs_out;
|
2021-04-10 09:14:16 +00:00
|
|
|
|
2023-04-17 03:09:24 +00:00
|
|
|
uniform bool flip_vertically;
|
|
|
|
|
|
|
|
uniform mat4 osg_ModelViewMatrix;
|
2021-04-10 09:14:16 +00:00
|
|
|
uniform mat4 osg_ModelViewProjectionMatrix;
|
|
|
|
uniform mat3 osg_NormalMatrix;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = osg_ModelViewProjectionMatrix * pos;
|
2023-04-17 03:09:24 +00:00
|
|
|
vs_out.texcoord = multitexcoord0.st;
|
2021-08-16 15:04:18 +00:00
|
|
|
if (flip_vertically)
|
2023-04-17 03:09:24 +00:00
|
|
|
vs_out.texcoord.y = 1.0 - vs_out.texcoord.y;
|
2021-04-10 09:14:16 +00:00
|
|
|
|
2023-04-17 03:09:24 +00:00
|
|
|
vs_out.vertex_normal = osg_NormalMatrix * normal;
|
|
|
|
vs_out.view_vector = (osg_ModelViewMatrix * pos).xyz;
|
2021-04-10 09:14:16 +00:00
|
|
|
}
|