VTK  9.4.20241118
vtkRenderPassCollection.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
87#ifndef vtkRenderPassCollection_h
88#define vtkRenderPassCollection_h
89
90#include "vtkCollection.h"
91#include "vtkRenderingOpenGL2Module.h" // For export macro
92#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
93
94VTK_ABI_NAMESPACE_BEGIN
95class vtkRenderPass;
96
97class VTKRENDERINGOPENGL2_EXPORT VTK_MARSHALAUTO vtkRenderPassCollection : public vtkCollection
98{
99public:
102 void PrintSelf(ostream& os, vtkIndent indent) override;
103
108
113
118
124
125protected:
128
129private:
130 // hide the standard AddItem from the user and the compiler.
131 void AddItem(vtkObject* o);
132
134 void operator=(const vtkRenderPassCollection&) = delete;
135};
136
137VTK_ABI_NAMESPACE_END
138#endif
create and manipulate ordered lists of objects
void AddItem(vtkObject *)
Add an object to the bottom of the list.
a simple class to control print indentation
Definition vtkIndent.h:108
abstract base class for most VTK objects
Definition vtkObject.h:162
an ordered list of RenderPasses
vtkRenderPass * GetNextRenderPass(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
vtkRenderPass * GetNextRenderPass()
Get the next RenderPass in the list.
static vtkRenderPassCollection * New()
void AddItem(vtkRenderPass *pass)
Add an RenderPass to the bottom of the list.
~vtkRenderPassCollection() override
vtkRenderPass * GetLastRenderPass()
Get the last RenderPass in the list.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Perform part of the rendering of a vtkRenderer.
void * vtkCollectionSimpleIterator
#define VTK_MARSHALAUTO