1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/Shaders/Shaders_TangentSpaceNormal_glsl.pxx
iko 7860770232 0031275: Visualization, TKOpenGl - handle normal-map texture with Path-Tracing
Base normal map support has been implemented in path tracing (just geometry normal replacement).
Smooth normal adaptation has been implemeneted in order to avoid black areas artefacts during path tracing.
Tangent normal space calcuation has been moved to separate unified function.
Tangent space orthogonalization algorithm has been changed in order to handle all orientations and combinations of UV coordinates.
2020-01-24 16:35:41 +03:00

21 lines
1.3 KiB
Plaintext

// This file has been automatically generated from resource file src/Shaders/TangentSpaceNormal.glsl
static const char Shaders_TangentSpaceNormal_glsl[] =
"//! Calculates transformation from tangent space and apply it to value from normal map to get normal in object space\n"
"vec3 TangentSpaceNormal (in mat2 theDeltaUVMatrix,\n"
" in mat2x3 theDeltaVectorMatrix,\n"
" in vec3 theNormalMapValue,\n"
" in vec3 theNormal,\n"
" in bool theIsInverse)\n"
"{\n"
" theNormalMapValue = normalize(theNormalMapValue * 2.0 - vec3(1.0));\n"
" // Inverse matrix\n"
" theDeltaUVMatrix = mat2 (theDeltaUVMatrix[1][1], -theDeltaUVMatrix[0][1], -theDeltaUVMatrix[1][0], theDeltaUVMatrix[0][0]);\n"
" theDeltaVectorMatrix = theDeltaVectorMatrix * theDeltaUVMatrix;\n"
" // Gram-Schmidt orthogonalization\n"
" theDeltaVectorMatrix[1] = normalize(theDeltaVectorMatrix[1] - dot(theNormal, theDeltaVectorMatrix[1]) * theNormal);\n"
" theDeltaVectorMatrix[0] = cross(theDeltaVectorMatrix[1], theNormal);\n"
" float aDirection = theIsInverse ? -1.0 : 1.0;\n"
" return mat3 (aDirection * theDeltaVectorMatrix[0], aDirection * theDeltaVectorMatrix[1], theNormal) * theNormalMapValue;\n"
"}\n";