VTK  9.3.20240418
vtkTreeCompositer.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
3 
4 // This software and ancillary information known as vtk_ext (and
5 // herein called "SOFTWARE") is made available under the terms
6 // described below. The SOFTWARE has been approved for release with
7 // associated LA_CC Number 99-44, granted by Los Alamos National
8 // Laboratory in July 1999.
9 //
10 // Unless otherwise indicated, this SOFTWARE has been authored by an
11 // employee or employees of the University of California, operator of
12 // the Los Alamos National Laboratory under Contract No. W-7405-ENG-36
13 // with the United States Department of Energy.
14 //
15 // The United States Government has rights to use, reproduce, and
16 // distribute this SOFTWARE. The public may copy, distribute, prepare
17 // derivative works and publicly display this SOFTWARE without charge,
18 // provided that this Notice and any statement of authorship are
19 // reproduced on all copies.
20 //
21 // Neither the U. S. Government, the University of California, nor the
22 // Advanced Computing Laboratory makes any warranty, either express or
23 // implied, nor assumes any liability or responsibility for the use of
24 // this SOFTWARE.
25 //
26 // If SOFTWARE is modified to produce derivative works, such modified
27 // SOFTWARE should be clearly marked, so as not to confuse it with the
28 // version available from Los Alamos National Laboratory.
29 
44 #ifndef vtkTreeCompositer_h
45 #define vtkTreeCompositer_h
46 
47 #include "vtkCompositer.h"
48 #include "vtkRenderingParallelModule.h" // For export macro
49 
50 VTK_ABI_NAMESPACE_BEGIN
51 class VTKRENDERINGPARALLEL_EXPORT vtkTreeCompositer : public vtkCompositer
52 {
53 public:
56  void PrintSelf(ostream& os, vtkIndent indent) override;
57 
59  vtkDataArray* pBuf, vtkFloatArray* zBuf, vtkDataArray* pTmp, vtkFloatArray* zTmp) override;
60 
61 protected:
63  ~vtkTreeCompositer() override;
64 
65 private:
66  vtkTreeCompositer(const vtkTreeCompositer&) = delete;
67  void operator=(const vtkTreeCompositer&) = delete;
68 };
69 
70 VTK_ABI_NAMESPACE_END
71 #endif
Super class for composite algorithms.
Definition: vtkCompositer.h:31
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:155
dynamic, self-adjusting array of float
a simple class to control print indentation
Definition: vtkIndent.h:108
Implements tree based compositing.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTreeCompositer * New()
void CompositeBuffer(vtkDataArray *pBuf, vtkFloatArray *zBuf, vtkDataArray *pTmp, vtkFloatArray *zTmp) override
This method gets called on every process.
~vtkTreeCompositer() override