Skip to content
Snippets Groups Projects
Commit 8c9bccfb authored by Michael Migliore's avatar Michael Migliore Committed by Kitware Robot
Browse files

Merge topic 'fix-env' into release


888d2c1c Fix environment map orientation

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Acked-by: default avatarJoachim Pouderoux <joachim.pouderoux@kitware.com>
Merge-request: !6718
parents b66446f1 888d2c1c
No related branches found
No related tags found
No related merge requests found
......@@ -2573,6 +2573,13 @@ void vtkOpenGLPolyDataMapper::SetCameraShaderParameters(
}
}
if (program->IsUniformUsed("envMatrix"))
{
vtkMatrix3x3::Invert(norms, this->TempMatrix3);
vtkMatrix3x3::Multiply3x3(this->TempMatrix3, env, this->TempMatrix3);
program->SetUniformMatrix("envMatrix", this->TempMatrix3);
}
if (program->IsUniformUsed("cameraParallel"))
{
program->SetUniformi("cameraParallel", cam->GetParallelProjection());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment