2021-08-25 12:32:22 +00:00
|
|
|
#version 330 core
|
|
|
|
|
|
|
|
layout(location = 0) in vec4 pos;
|
|
|
|
layout(location = 1) in vec3 normal;
|
|
|
|
|
2023-04-17 03:09:24 +00:00
|
|
|
out vec3 vertex_normal;
|
2021-08-25 12:32:22 +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
|
|
|
vertex_normal = osg_NormalMatrix * normal;
|
2021-08-25 12:32:22 +00:00
|
|
|
}
|