VTK
vtkSequencePass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSequencePass.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 =========================================================================*/
32 #ifndef __vtkSequencePass_h
33 #define __vtkSequencePass_h
34 
35 #include "vtkRenderPass.h"
36 
38 
40 {
41 public:
42  static vtkSequencePass *New();
44  void PrintSelf(ostream& os, vtkIndent indent);
45 
46  //BTX
48 
50  virtual void Render(const vtkRenderState *s);
51  //ETX
53 
56  virtual void ReleaseGraphicsResources(vtkWindow *w);
57 
59 
62  vtkGetObjectMacro(Passes,vtkRenderPassCollection);
63  virtual void SetPasses(vtkRenderPassCollection *passes);
65 
66 protected:
68 
70  virtual ~vtkSequencePass();
71 
72 private:
73  vtkSequencePass(const vtkSequencePass&); // Not implemented.
74  void operator=(const vtkSequencePass&); // Not implemented.
75 };
76 
77 #endif
Execute render passes sequentially.
void PrintSelf(ostream &os, vtkIndent indent)
window superclass for vtkRenderWindow
Definition: vtkWindow.h:35
Context in which a vtkRenderPass will render.
a simple class to control print indentation
Definition: vtkIndent.h:37
vtkRenderPassCollection * Passes
#define VTK_RENDERING_EXPORT
virtual void Render(const vtkRenderState *s)=0
virtual void ReleaseGraphicsResources(vtkWindow *w)
a list of RenderPasses
static vtkObject * New()
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:53