VTK
vtkCompositedSynchronizedRenderers.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkCompositedSynchronizedRenderers.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=========================================================================*/
25#ifndef vtkCompositedSynchronizedRenderers_h
26#define vtkCompositedSynchronizedRenderers_h
27
28#include "vtkRenderingParallelModule.h" // For export macro
30
31class vtkFloatArray;
32class vtkCompositer;
33
34class VTKRENDERINGPARALLEL_EXPORT vtkCompositedSynchronizedRenderers : public vtkSynchronizedRenderers
35{
36public:
39 void PrintSelf(ostream& os, vtkIndent indent);
40
42
46 vtkGetObjectMacro(Compositer, vtkCompositer);
48
49protected:
52
53 virtual void MasterEndRender();
54 virtual void SlaveEndRender();
56
58private:
60 void operator=(const vtkCompositedSynchronizedRenderers&) VTK_DELETE_FUNCTION;
61
62};
63
64#endif
vtkCompositedSynchronizedRenderers is vtkSynchronizedRenderers that uses vtkCompositer to composite t...
void CaptureRenderedDepthBuffer(vtkFloatArray *depth_buffer)
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
void SetCompositer(vtkCompositer *)
Get/Set the composite.
static vtkCompositedSynchronizedRenderers * New()
Super class for composite algorthms.
Definition: vtkCompositer.h:42
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:42
a simple class to control print indentation
Definition: vtkIndent.h:40
synchronizes renderers across processes.