VTK
vtkCompositeRenderManager.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeRenderManager.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 =========================================================================*/
26 #ifndef vtkCompositeRenderManager_h
27 #define vtkCompositeRenderManager_h
28 
29 #include "vtkRenderingParallelModule.h" // For export macro
31 
32 class vtkCompositer;
33 class vtkFloatArray;
34 
35 class VTKRENDERINGPARALLEL_EXPORT vtkCompositeRenderManager : public vtkParallelRenderManager
36 {
37 public:
40  void PrintSelf(ostream &os, vtkIndent indent) override;
41 
43 
46  void SetCompositer(vtkCompositer *c);
47  vtkGetObjectMacro(Compositer, vtkCompositer);
49 
50 protected:
52  ~vtkCompositeRenderManager() override;
53 
55 
56  void PreRenderProcessing() override;
57  void PostRenderProcessing() override;
58 
62 
64 
65 private:
67  void operator=(const vtkCompositeRenderManager &) = delete;
68 };
69 
70 #endif //vtkCompositeRenderManager_h
An object to control sort-last parallel rendering.
An object to control parallel rendering.
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:35
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
vtkUnsignedCharArray * TmpPixelData
virtual void PreRenderProcessing()=0
Here is a good place to handle processing of data before and after render.
dynamic, self-adjusting array of unsigned char
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...
Super class for composite algorthms.
Definition: vtkCompositer.h:41