2021-08-25 14:32:22 +02:00
|
|
|
#version 330 core
|
|
|
|
|
|
|
|
layout(location = 0) in vec4 pos;
|
|
|
|
layout(location = 1) in vec3 normal;
|
|
|
|
|
2023-04-07 08:17:37 +02:00
|
|
|
out vec3 vN;
|
2021-08-25 14:32:22 +02:00
|
|
|
|
|
|
|
uniform mat4 osg_ModelViewProjectionMatrix;
|
|
|
|
uniform mat3 osg_NormalMatrix;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = osg_ModelViewProjectionMatrix * pos;
|
2023-04-07 08:17:37 +02:00
|
|
|
vN = normalize(osg_NormalMatrix * normal);
|
2021-08-25 14:32:22 +02:00
|
|
|
}
|