1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0031997: Visualization, TKOpenGl - phong shader compilation error with normal texture map enabled

OpenGl_ShaderManager::defaultGlslVersion() now defines GLSL 120 for normal map texture.
This commit is contained in:
kgv 2020-12-15 00:37:49 +03:00 committed by bugmaster
parent fccc168a6f
commit 1e1158c78b

View File

@ -1793,6 +1793,14 @@ int OpenGl_ShaderManager::defaultGlslVersion (const Handle(Graphic3d_ShaderProgr
}
else
{
const bool toUseMat2x3 = (theBits & OpenGl_PO_HasTextures) == OpenGl_PO_TextureNormal;
if (toUseMat2x3) // TangentSpaceNormal() function uses mat2x3 type
{
if (myContext->IsGlGreaterEqual (2, 1))
{
theProgram->SetHeader ("#version 120");
}
}
if ((theBits & OpenGl_PO_StippleLine) != 0
|| theProgram->IsPBR())
{