ParaView/ParaView And Mesa 3D: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
ParaView requires OpenGL libraries for rendering. For machines with sophisticated graphics cards, the OpenGL libraries are typically provided by the device drivers for those cards. However, on certain machines such as supercomputers without specialized graphics hardware, one has to rely on software-based rendering alternatives such as Mesa. Mesa is an open-source implementation of the OpenGL specification.
ParaView requires OpenGL libraries for rendering. For machines with sophisticated graphics cards, the OpenGL libraries are typically provided by the device drivers for those cards. However, on certain machines such as supercomputers without specialized graphics hardware, one has to rely on software-based rendering alternatives such as Mesa. Mesa is an open-source implementation of the OpenGL specification.


Mesa can be configured to work within different environments ranging from software emulation to complete hardware acceleration when supported GPUs are present. '''<font color="red">This discussion only applies to software emulation</font>'''.
Mesa can be configured to work within different environments ranging from software emulation to complete hardware acceleration when supported GPUs are present. '''<font color="red">This discussion only applies to Mesa with software emulation on linux-based systems</font>'''.
 
For this discussion we will stick with Linux-based systems.


=When to use Mesa=
=When to use Mesa=
Line 17: Line 15:


=ParaView with Mesa=
=ParaView with Mesa=
This section describes the compilation process for machines with X. With newer versions of Mesa (>= 7.9) it is '''NOT''' possible to build with OSMesa support as well.


==Configuring Mesa==
==Configuring Mesa==
Download Mesa libraries from [http://mesa3d.org/download.html Mesa3D website]. For ParaView, only '''MesaLib''' package is required.
Configure and build Mesa based as described on [http://mesa3d.org/install.html Mesa3D website].
The recommended steps are:
  ./configure --with-driver=xlib --prefix={MESA_INSTALL_PREFIX}
  make
  make install
==Configuring ParaView==
Configure ParaView as described on [[ParaView:Build And Install]]. The only cmake variables that need to be updated are:
  OPENGL_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
  OPENGL_gl_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libGL.[so|a]
  OPENGL_glu_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libGLU.[so|a]
*IF AND ONLY IF* Mesa version < 7.9, one can also set the following cmake variables and build ParaView with OSMesa support. In this case, pvserver --use-offscreen-rendering will use OSMesa.
  VTK_OPENGL_HAS_OSMESA = ON
  OSMESA_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
  OSMESA_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libOSMesa.[so|a]
The rest on the configure and build for ParaView remains unchanged.





Revision as of 18:25, 12 October 2011

ParaView requires OpenGL libraries for rendering. For machines with sophisticated graphics cards, the OpenGL libraries are typically provided by the device drivers for those cards. However, on certain machines such as supercomputers without specialized graphics hardware, one has to rely on software-based rendering alternatives such as Mesa. Mesa is an open-source implementation of the OpenGL specification.

Mesa can be configured to work within different environments ranging from software emulation to complete hardware acceleration when supported GPUs are present. This discussion only applies to Mesa with software emulation on linux-based systems.

When to use Mesa

Some of the use-cases when one would build ParaView with Mesa are:

  1. You are building on a machine where X Window System is not available.
  2. You are building on a machine that has X, but you does not have graphics hardware or you still want to use software emulation for various reasons.

In case of (1) you'll have to build with OSMesa support. With newer versions of Mesa (>= 7.9), ParaView can be built with OSMesa only when the Qt GUI is disabled. Refer to #ParaView with Offscreen Mesa

In case of (2) you can configure Mesa with X support. Unlike with OSMesa, in this configuration, one can build both the server-executables as well as the Qt client, and both will use Mesa for rendering. Refer to #ParaView with Mesa.

ParaView with Mesa

This section describes the compilation process for machines with X. With newer versions of Mesa (>= 7.9) it is NOT possible to build with OSMesa support as well.

Configuring Mesa

Download Mesa libraries from Mesa3D website. For ParaView, only MesaLib package is required.

Configure and build Mesa based as described on Mesa3D website.

The recommended steps are:

 ./configure --with-driver=xlib --prefix={MESA_INSTALL_PREFIX}
 make
 make install

Configuring ParaView

Configure ParaView as described on ParaView:Build And Install. The only cmake variables that need to be updated are:

 OPENGL_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
 OPENGL_gl_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libGL.[so|a]
 OPENGL_glu_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libGLU.[so|a]
  • IF AND ONLY IF* Mesa version < 7.9, one can also set the following cmake variables and build ParaView with OSMesa support. In this case, pvserver --use-offscreen-rendering will use OSMesa.
 VTK_OPENGL_HAS_OSMESA = ON
 OSMESA_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
 OSMESA_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libOSMesa.[so|a]

The rest on the configure and build for ParaView remains unchanged.




ParaView with Offscreen Mesa