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 =========================================================================*/
33 #ifndef __vtkDefaultPass_h
34 #define __vtkDefaultPass_h
35 
36 #include "vtkRenderPass.h"
37 
39 class vtkDefaultPassLayerList; // Pimpl
40 
42 {
43 public:
44  static vtkDefaultPass *New();
46  void PrintSelf(ostream& os, vtkIndent indent);
47 
48  //BTX
50 
53  virtual void Render(const vtkRenderState *s);
54  //ETX
56 
57  protected:
60 
62  virtual ~vtkDefaultPass();
63 
65  virtual void RenderOpaqueGeometry(const vtkRenderState *s);
66 
68  virtual void RenderFilteredOpaqueGeometry(const vtkRenderState *s);
69 
71  virtual void RenderTranslucentPolygonalGeometry(const vtkRenderState *s);
72 
74 
75  virtual void RenderFilteredTranslucentPolygonalGeometry(
76  const vtkRenderState *s);
78 
80  virtual void RenderVolumetricGeometry(const vtkRenderState *s);
81 
83  virtual void RenderFilteredVolumetricGeometry(const vtkRenderState *s);
84 
86  virtual void RenderOverlay(const vtkRenderState *s);
87 
89  virtual void RenderFilteredOverlay(const vtkRenderState *s);
90 
91  private:
92  vtkDefaultPass(const vtkDefaultPass&); // Not implemented.
93  void operator=(const vtkDefaultPass&); // Not implemented.
94 };
95 
96 #endif
OpenGL rendering window.
void PrintSelf(ostream &os, vtkIndent indent)
Context in which a vtkRenderPass will render.
a simple class to control print indentation
Definition: vtkIndent.h:37
#define VTK_RENDERING_EXPORT
virtual void Render(const vtkRenderState *s)=0
static vtkObject * New()
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:53
Implement the basic render passes.