2021-04-10 09:14:16 +00:00
|
|
|
#version 330 core
|
|
|
|
|
|
|
|
layout(location = 0) in vec4 pos;
|
|
|
|
layout(location = 1) in vec3 normal;
|
|
|
|
layout(location = 3) in vec4 multiTexCoord0;
|
2021-07-31 10:59:16 +00:00
|
|
|
layout(location = 6) in vec3 tangent;
|
|
|
|
layout(location = 7) in vec3 binormal;
|
2021-04-10 09:14:16 +00:00
|
|
|
|
|
|
|
out vec2 texCoord;
|
|
|
|
out mat3 TBN;
|
|
|
|
|
2021-08-25 14:49:08 +00:00
|
|
|
uniform int normalmap_enabled;
|
|
|
|
|
2021-04-10 09:14:16 +00:00
|
|
|
uniform mat4 osg_ModelViewProjectionMatrix;
|
|
|
|
uniform mat3 osg_NormalMatrix;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = osg_ModelViewProjectionMatrix * pos;
|
|
|
|
texCoord = multiTexCoord0.st;
|
|
|
|
|
2021-08-25 14:49:08 +00:00
|
|
|
vec3 N = normalize(normal);
|
|
|
|
vec3 T, B;
|
|
|
|
if (normalmap_enabled > 0) {
|
|
|
|
T = tangent;
|
|
|
|
B = binormal;
|
|
|
|
} else {
|
|
|
|
T = cross(N, vec3(1.0, 0.0, 0.0));
|
|
|
|
B = cross(N, T);
|
|
|
|
}
|
|
|
|
TBN = mat3(normalize(osg_NormalMatrix * T),
|
|
|
|
normalize(osg_NormalMatrix * B),
|
|
|
|
normalize(osg_NormalMatrix * N));
|
2021-04-10 09:14:16 +00:00
|
|
|
}
|