VTK
vtkOSPRayVolumeMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOSPRayVolumeMapper.h
5  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
6 
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
27 #ifndef vtkOSPRayVolumeMapper_h
28 #define vtkOSPRayVolumeMapper_h
29 
30 #include "vtkRenderingOSPRayModule.h" // For export macro
32 
33 class vtkOSPRayPass;
34 class vtkRenderer;
35 class vtkWindow;
36 
37 class VTKRENDERINGOSPRAY_EXPORT vtkOSPRayVolumeMapper
39 {
40 public:
43  void PrintSelf( ostream& os, vtkIndent indent );
44 
51 
52  // Initialize internal constructs
53  virtual void Init();
54 
59  virtual void Render(vtkRenderer *, vtkVolume *);
60 
61 protected:
64 
68 
69 private:
70  vtkOSPRayVolumeMapper(const vtkOSPRayVolumeMapper&) VTK_DELETE_FUNCTION;
71  void operator=(const vtkOSPRayVolumeMapper&) VTK_DELETE_FUNCTION;
72 };
73 
74 #endif
a simple class to control print indentation
Definition: vtkIndent.h:40
a render pass that uses OSPRay instead of GL
Definition: vtkOSPRayPass.h:43
Removes link dependence on optional ospray module.
Standalone OSPRayVolumeMapper.
virtual void Render(vtkRenderer *, vtkVolume *)
Render the volume onto the screen.
static vtkOSPRayVolumeMapper * New()
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual void Init()
vtkOSPRayPass * InternalOSPRayPass
virtual void ReleaseGraphicsResources(vtkWindow *)
Release any graphics resources that are being consumed by this mapper.
abstract specification for renderers
Definition: vtkRenderer.h:64
represents a volume (data & properties) in a rendered scene
Definition: vtkVolume.h:51
window superclass for vtkRenderWindow
Definition: vtkWindow.h:35