VTK  9.3.20240425
vtkLightingMapPass.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
22#ifndef vtkLightingMapPass_h
23#define vtkLightingMapPass_h
24
25#include "vtkDefaultPass.h"
26#include "vtkRenderingOpenGL2Module.h" // For export macro
27
28VTK_ABI_NAMESPACE_BEGIN
30
31class VTKRENDERINGOPENGL2_EXPORT vtkLightingMapPass : public vtkDefaultPass
32{
33public:
36 void PrintSelf(ostream& os, vtkIndent indent) override;
37
39
43 {
45 NORMALS
46 };
47 vtkSetMacro(RenderType, RenderMode);
48 vtkGetMacro(RenderType, RenderMode);
50
57
64
69 void Render(const vtkRenderState* s) override;
70
71protected:
76
81
86 void RenderOpaqueGeometry(const vtkRenderState* s) override;
87
88private:
90 void operator=(const vtkLightingMapPass&) = delete;
91
92 RenderMode RenderType;
93};
94
95VTK_ABI_NAMESPACE_END
96#endif
Implement the basic render passes.
a simple class to control print indentation
Definition vtkIndent.h:108
Key for integer values in vtkInformation.
~vtkLightingMapPass() override
Destructor.
static vtkLightingMapPass * New()
vtkLightingMapPass()
Default constructor.
static vtkInformationIntegerKey * RENDER_NORMALS()
if this key exists on the ProperyKeys of a prop, the active vector array on the prop will be rendered...
void Render(const vtkRenderState *s) override
Perform rendering according to a render state s.
RenderMode
Set the type of lighting render to perform.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkInformationIntegerKey * RENDER_LUMINANCE()
If this key exists on the PropertyKeys of a prop, the active scalar array on the prop will be rendere...
void RenderOpaqueGeometry(const vtkRenderState *s) override
Opaque pass with key checking.
Context in which a vtkRenderPass will render.