VTK  9.6.20260204
vtkOpenGLPointGaussianMapper.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
13
14#ifndef vtkOpenGLPointGaussianMapper_h
15#define vtkOpenGLPointGaussianMapper_h
16
18#include "vtkRenderingOpenGL2Module.h" // For export macro
19#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
20#include <vector> // for ivar
21
22VTK_ABI_NAMESPACE_BEGIN
25
26class VTKRENDERINGOPENGL2_EXPORT VTK_MARSHALAUTO vtkOpenGLPointGaussianMapper
28{
29public:
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35
42
47
51 void Render(vtkRenderer* ren, vtkActor* act) override;
52
58 vtkHardwareSelector* sel, std::vector<unsigned int>& pixeloffsets, vtkProp* prop) override;
59
60protected:
63
64 void ReportReferences(vtkGarbageCollector* collector) override;
65
66 std::vector<vtkOpenGLPointGaussianMapperHelper*> Helpers;
67
70
74
75 // unused
76 void RenderPiece(vtkRenderer*, vtkActor*) override {}
77
79
80 // create the table for opacity values
82
83 // create the table for scale values
85
86 float* OpacityTable; // the table
87 double OpacityScale; // used for quick lookups
88 double OpacityOffset; // used for quick lookups
89 float* ScaleTable; // the table
90 double ScaleScale; // used for quick lookups
91 double ScaleOffset; // used for quick lookups
92
99
103 int FillInputPortInformation(int port, vtkInformation* info) override;
104
108 void ComputeBounds() override;
109
110 // used by the hardware selector
111 std::vector<std::vector<unsigned int>> PickPixels;
112
113private:
115 void operator=(const vtkOpenGLPointGaussianMapper&) = delete;
116};
117
118#define vtkOpenGLPointGaussianMapper_OVERRIDE_ATTRIBUTES \
119 vtkOpenGLPointGaussianMapper::CreateOverrideAttributes()
120VTK_ABI_NAMESPACE_END
121#endif
represents an object (geometry & properties) in a rendered scene
Definition vtkActor.h:151
Superclass for all pipeline executives in VTK.
Detect and break reference loops.
a simple class to control print indentation
Definition vtkIndent.h:108
Store vtkAlgorithm input/output information.
virtual void CopyMapperValuesToHelper(vtkOpenGLPointGaussianMapperHelper *helper)
void ProcessSelectorPixelBuffers(vtkHardwareSelector *sel, std::vector< unsigned int > &pixeloffsets, vtkProp *prop) override
allows a mapper to update a selections color buffers Called from a prop which in turn is called from ...
static vtkOverrideAttribute * CreateOverrideAttributes()
static vtkOpenGLPointGaussianMapper * New()
std::vector< std::vector< unsigned int > > PickPixels
bool HasTranslucentPolygonalGeometry() override
Based on emissive setting.
void Render(vtkRenderer *ren, vtkActor *act) override
This calls RenderPiece (in a for loop if streaming is necessary).
std::vector< vtkOpenGLPointGaussianMapperHelper * > Helpers
virtual vtkOpenGLPointGaussianMapperHelper * CreateHelper()
void ReleaseGraphicsResources(vtkWindow *) override
Release any graphics resources that are being consumed by this mapper.
void RenderPiece(vtkRenderer *, vtkActor *) override
Implemented by sub classes.
void ComputeBounds() override
Need to loop over the hierarchy to compute bounds.
vtkExecutive * CreateDefaultExecutive() override
We need to override this method because the standard streaming demand driven pipeline may not be what...
~vtkOpenGLPointGaussianMapper() override
void ReportReferences(vtkGarbageCollector *collector) override
void RenderInternal(vtkRenderer *, vtkActor *)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Need to define the type of data handled by this mapper.
Attribute for vtkObjectFactory overrides.
abstract superclass for all actors, volumes and annotations
Definition vtkProp.h:69
abstract specification for renderers
record modification and/or execution time
window superclass for vtkRenderWindow
Definition vtkWindow.h:61
#define VTK_MARSHALAUTO
#define VTK_NEWINSTANCE