VTK
vtkClientServerCompositePass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: $RCSfile$
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 =========================================================================*/
25 #ifndef vtkClientServerCompositePass_h
26 #define vtkClientServerCompositePass_h
27 
28 #include "vtkRenderingParallelModule.h" // For export macro
29 #include "vtkRenderPass.h"
30 
32 
33 class VTKRENDERINGPARALLEL_EXPORT vtkClientServerCompositePass : public vtkRenderPass
34 {
35 public:
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
40  //BTX
42 
44  virtual void Render(const vtkRenderState *s);
45  //ETX
47 
51 
53 
57  vtkGetObjectMacro(Controller,vtkMultiProcessController);
58  virtual void SetController(vtkMultiProcessController *controller);
60 
62 
65  void SetRenderPass(vtkRenderPass*);
66  vtkGetObjectMacro(RenderPass, vtkRenderPass);
68 
70 
76  void SetPostProcessingRenderPass(vtkRenderPass*);
77  vtkGetObjectMacro(PostProcessingRenderPass, vtkRenderPass);
79 
81 
84  vtkSetMacro(ProcessIsServer,bool);
85  vtkBooleanMacro(ProcessIsServer, bool);
86  vtkGetMacro(ProcessIsServer, bool);
88 
90 
94  vtkSetMacro(ServerSideRendering, bool);
95  vtkBooleanMacro(ServerSideRendering, bool);
96  vtkGetMacro(ServerSideRendering, bool);
98 
99 //BTX
100 protected:
103 
107 
110 private:
112  void operator=(const vtkClientServerCompositePass&); // Not implemented.
113 //ETX
114 };
115 
116 #endif
117 
118 
vtkMultiProcessController * Controller
void PrintSelf(ostream &os, vtkIndent indent)
window superclass for vtkRenderWindow
Definition: vtkWindow.h:36
Context in which a vtkRenderPass will render.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual void Render(const vtkRenderState *s)=0
virtual void ReleaseGraphicsResources(vtkWindow *w)
static vtkObject * New()
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:54
Multiprocessing communication superclass.