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 "vtkRenderingOpenGLModule.h" // For export macro
36 #include "vtkRenderPass.h"
37 
39 
41 {
42 public:
43  static vtkSequencePass *New();
45  void PrintSelf(ostream& os, vtkIndent indent);
46 
47  //BTX
49 
51  virtual void Render(const vtkRenderState *s);
52  //ETX
54 
58 
60 
64  virtual void SetPasses(vtkRenderPassCollection *passes);
66 
67 protected:
69 
71  virtual ~vtkSequencePass();
72 
73 private:
74  vtkSequencePass(const vtkSequencePass&); // Not implemented.
75  void operator=(const vtkSequencePass&); // Not implemented.
76 };
77 
78 #endif
vtkSequencePass::SetPasses
virtual void SetPasses(vtkRenderPassCollection *passes)
vtkGetObjectMacro
#define vtkGetObjectMacro(name, type)
Definition: vtkSetGet.h:232
vtkSequencePass::~vtkSequencePass
virtual ~vtkSequencePass()
vtkSequencePass::Render
virtual void Render(const vtkRenderState *s)
vtkRenderPass.h
vtkRenderingOpenGLModule.h
vtkgl::s
GLdouble s
Definition: vtkgl.h:11594
vtkSequencePass::Passes
vtkRenderPassCollection * Passes
Definition: vtkSequencePass.h:68
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkWindow
window superclass for vtkRenderWindow
Definition: vtkWindow.h:34
vtkSequencePass::New
static vtkSequencePass * New()
vtkSequencePass::ReleaseGraphicsResources
virtual void ReleaseGraphicsResources(vtkWindow *w)
vtkRenderPassCollection
a list of RenderPasses
Definition: vtkRenderPassCollection.h:38
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSequencePass::vtkSequencePass
vtkSequencePass()
vtkgl::w
GLubyte GLubyte GLubyte GLubyte w
Definition: vtkgl.h:12054
vtkRenderState
Context in which a vtkRenderPass will render.
Definition: vtkRenderState.h:40
vtkSequencePass::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkSequencePass
Execute render passes sequentially.
Definition: vtkSequencePass.h:41
VTKRENDERINGOPENGL_EXPORT
#define VTKRENDERINGOPENGL_EXPORT
Definition: vtkRenderingOpenGLModule.h:15
vtkRenderPass
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:58