VTK
vtkImageRenderManager.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageRenderManager.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
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 =========================================================================*/
30 #ifndef vtkImageRenderManager_h
31 #define vtkImageRenderManager_h
32 
33 #include "vtkRenderingParallelModule.h" // For export macro
35 
36 class VTKRENDERINGPARALLEL_EXPORT vtkImageRenderManager : public vtkParallelRenderManager
37 {
38 public:
40  static vtkImageRenderManager *New();
41  void PrintSelf(ostream &os, vtkIndent indent) override;
42 
43 protected:
45  ~vtkImageRenderManager() override;
46 
47  void PreRenderProcessing() override;
48  void PostRenderProcessing() override;
49 
50 private:
52  void operator=(const vtkImageRenderManager &) = delete;
53 };
54 
55 #endif //vtkImageRenderManager_h
An object to control parallel rendering.
An object to control sort-first parallel rendering.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:33
virtual void PreRenderProcessing()=0
Here is a good place to handle processing of data before and after render.
virtual void PostRenderProcessing()=0
Here is a good place to handle processing of data before and after render.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...