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=========================================================================*/
33#ifndef vtkImageRenderManager_h
34#define vtkImageRenderManager_h
35
36#include "vtkRenderingParallelModule.h" // For export macro
38
39class VTKRENDERINGPARALLEL_EXPORT vtkImageRenderManager : public vtkParallelRenderManager
40{
41public:
44 virtual void PrintSelf(ostream &os, vtkIndent indent);
45
46protected:
49
50 virtual void PreRenderProcessing();
51 virtual void PostRenderProcessing();
52
53private:
54 vtkImageRenderManager(const vtkImageRenderManager &) VTK_DELETE_FUNCTION;
55 void operator=(const vtkImageRenderManager &) VTK_DELETE_FUNCTION;
56};
57
58#endif //vtkImageRenderManager_h
An object to control sort-first parallel rendering.
virtual void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
static vtkImageRenderManager * New()
virtual void PreRenderProcessing()
Here is a good place to handle processing of data before and after render.
virtual void PostRenderProcessing()
a simple class to control print indentation
Definition: vtkIndent.h:40
An object to control parallel rendering.