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 =========================================================================*/
31 #ifndef vtkCompositeRenderManager_h
32 #define vtkCompositeRenderManager_h
33 
34 #include "vtkRenderingParallelModule.h" // For export macro
36 
37 class vtkCompositer;
38 class vtkFloatArray;
39 
40 class VTKRENDERINGPARALLEL_EXPORT vtkCompositeRenderManager : public vtkParallelRenderManager
41 {
42 public:
45  virtual void PrintSelf(ostream &os, vtkIndent indent);
46 
48 
49  void SetCompositer(vtkCompositer *c);
50  vtkGetObjectMacro(Compositer, vtkCompositer);
52 
54 
55  vtkGetMacro(ImageProcessingTime, double);
57 
58 protected:
61 
63 
64  virtual void PreRenderProcessing();
65  virtual void PostRenderProcessing();
66 
70 
72 
73 private:
74  vtkCompositeRenderManager(const vtkCompositeRenderManager &);//Not implemented
75  void operator=(const vtkCompositeRenderManager &); //Not implemented
76 };
77 
78 #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:45
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkUnsignedCharArray * TmpPixelData
virtual void PreRenderProcessing()=0
dynamic, self-adjusting array of unsigned char
virtual void PostRenderProcessing()=0
static vtkObject * New()
virtual void PrintSelf(ostream &os, vtkIndent indent)
Super class for composite algorthms.
Definition: vtkCompositer.h:40