VTK
vtkDefaultPass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDefaultPass.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 =========================================================================*/
37 #ifndef vtkDefaultPass_h
38 #define vtkDefaultPass_h
39 
40 #include "vtkRenderingOpenGL2Module.h" // For export macro
41 #include "vtkRenderPass.h"
42 
44 class vtkDefaultPassLayerList; // Pimpl
45 
46 class VTKRENDERINGOPENGL2_EXPORT vtkDefaultPass : public vtkRenderPass
47 {
48 public:
49  static vtkDefaultPass *New();
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
59  virtual void Render(const vtkRenderState *s);
60 
61  protected:
66 
70  virtual ~vtkDefaultPass();
71 
76  virtual void RenderOpaqueGeometry(const vtkRenderState *s);
77 
82  virtual void RenderFilteredOpaqueGeometry(const vtkRenderState *s);
83 
88  virtual void RenderTranslucentPolygonalGeometry(const vtkRenderState *s);
89 
94  virtual void RenderFilteredTranslucentPolygonalGeometry(
95  const vtkRenderState *s);
96 
101  virtual void RenderVolumetricGeometry(const vtkRenderState *s);
102 
107  virtual void RenderFilteredVolumetricGeometry(const vtkRenderState *s);
108 
113  virtual void RenderOverlay(const vtkRenderState *s);
114 
119  virtual void RenderFilteredOverlay(const vtkRenderState *s);
120 
121  private:
122  vtkDefaultPass(const vtkDefaultPass&) VTK_DELETE_FUNCTION;
123  void operator=(const vtkDefaultPass&) VTK_DELETE_FUNCTION;
124 };
125 
126 #endif
OpenGL rendering window.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
Context in which a vtkRenderPass will render.
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual void Render(const vtkRenderState *s)=0
Perform rendering according to a render state s.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:58
Implement the basic render passes.