Skip to content

Commit

Permalink
Disabling OpenGL2 backend and MPI
Browse files Browse the repository at this point in the history
By default we deactivate the OpenGL2 and MPI backend (GUIToolkitsVariables v 1.5.0 of 06/07/24).
  • Loading branch information
CharlesPignerol authored Dec 17, 2024
1 parent a3dd98e commit a9d88cd
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions meshing_supersede/packages/vtk-maillage/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@


class VtkMaillage(CMakePackage):
"""Recette "pole maillage" de VTK, en vue d'eviter d'entrer en collision avec toute autre recette de VTK.
"""Recette "pole maillage" de VTK, en vue d'eviter d'entrer en collision
avec toute autre recette de VTK.
Par défaut on désactivele backend OpenGL2 et MPI (GUIToolkitsVariables
v 1.5.0 du 07/06/24).
The Visualization Toolkit (VTK) is an open-source, freely
available software system for 3D computer graphics, image
processing and visualization. """
Expand All @@ -18,13 +21,13 @@ class VtkMaillage(CMakePackage):
url = 'https://vtk.org/files/release/7.1/VTK-7.1.1.tar.gz'

# VTK7 defaults to OpenGL2 rendering backend
variant('opengl2', default=True, description='Enable OpenGL2 backend')
variant('opengl2', default=False, description='Enable OpenGL2 backend')
variant('osmesa', default=False, description='Enable OSMesa support')
# variant('python', default=False, description='Enable Python support')
variant('qt', default=False, description='Build with support for Qt')
# variant('xdmf', default=False, description='Build XDMF file support')
# variant('ffmpeg', default=False, description='Build with FFMPEG support')
variant('mpi', default=True, description='Enable MPI support')
variant('mpi', default=False, description='Enable MPI support')

# At the moment, we cannot build with both osmesa and qt, but as of
# VTK 8.1, that should change
Expand Down

0 comments on commit a9d88cd

Please sign in to comment.