VTK  9.2.6
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 "vtkRenderPass.h"
41 #include "vtkRenderingOpenGL2Module.h" // For export macro
42 
44 class vtkDefaultPassLayerList; // Pimpl
45 
46 class VTKRENDERINGOPENGL2_EXPORT vtkDefaultPass : public vtkRenderPass
47 {
48 public:
49  static vtkDefaultPass* New();
50  vtkTypeMacro(vtkDefaultPass, vtkRenderPass);
51  void PrintSelf(ostream& os, vtkIndent indent) override;
52 
59  void Render(const vtkRenderState* s) override;
60 
61 protected:
66 
70  ~vtkDefaultPass() override;
71 
76  virtual void RenderOpaqueGeometry(const vtkRenderState* s);
77 
83 
89 
95 
100  virtual void RenderVolumetricGeometry(const vtkRenderState* s);
101 
107 
112  virtual void RenderOverlay(const vtkRenderState* s);
113 
118  virtual void RenderFilteredOverlay(const vtkRenderState* s);
119 
120 private:
121  vtkDefaultPass(const vtkDefaultPass&) = delete;
122  void operator=(const vtkDefaultPass&) = delete;
123 };
124 
125 #endif
Implement the basic render passes.
virtual void RenderVolumetricGeometry(const vtkRenderState *s)
Volume pass without key checking.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void RenderFilteredOpaqueGeometry(const vtkRenderState *s)
Opaque pass with key checking.
~vtkDefaultPass() override
Destructor.
virtual void RenderFilteredTranslucentPolygonalGeometry(const vtkRenderState *s)
Translucent pass with key checking.
virtual void RenderTranslucentPolygonalGeometry(const vtkRenderState *s)
Translucent pass without key checking.
vtkDefaultPass()
Default constructor.
virtual void RenderFilteredVolumetricGeometry(const vtkRenderState *s)
Translucent pass with key checking.
virtual void RenderOverlay(const vtkRenderState *s)
Overlay pass without key checking.
static vtkDefaultPass * New()
virtual void RenderFilteredOverlay(const vtkRenderState *s)
Overlay pass with key checking.
void Render(const vtkRenderState *s) override
Perform rendering according to a render state s.
virtual void RenderOpaqueGeometry(const vtkRenderState *s)
Opaque pass without key checking.
a simple class to control print indentation
Definition: vtkIndent.h:119
OpenGL rendering window.
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:60
Context in which a vtkRenderPass will render.