VTK  9.2.6
vtkCompositeRGBAPass.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkCompositeRGBAPass.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=========================================================================*/
33
34#ifndef vtkCompositeRGBAPass_h
35#define vtkCompositeRGBAPass_h
36
37#include "vtkRenderPass.h"
38#include "vtkRenderingParallelModule.h" // For export macro
39
41
45class vtkPKdTree;
46
47class VTKRENDERINGPARALLEL_EXPORT vtkCompositeRGBAPass : public vtkRenderPass
48{
49public:
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
58 void Render(const vtkRenderState* s) override;
59
66
68
74 virtual void SetController(vtkMultiProcessController* controller);
76
78
81 vtkGetObjectMacro(Kdtree, vtkPKdTree);
82 virtual void SetKdtree(vtkPKdTree* kdtree);
84
89
90protected:
95
100
103
109
110private:
112 void operator=(const vtkCompositeRGBAPass&) = delete;
113};
114
115#endif
void ReleaseGraphicsResources(vtkWindow *w) override
Release graphics resources and ask components to release their own resources.
bool IsSupported(vtkOpenGLRenderWindow *context)
Is the pass supported by the OpenGL context?
void Render(const vtkRenderState *s) override
Perform rendering according to a render state s.
vtkMultiProcessController * Controller
virtual void SetController(vtkMultiProcessController *controller)
Controller If it is NULL, nothing will be rendered and a warning will be emitted.
vtkPixelBufferObject * PBO
~vtkCompositeRGBAPass() override
Destructor.
vtkTextureObject * RootTexture
vtkTextureObject * RGBATexture
virtual void SetKdtree(vtkPKdTree *kdtree)
kd tree that gives processes ordering.
static vtkCompositeRGBAPass * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkCompositeRGBAPass()
Default constructor.
a simple class to control print indentation
Definition vtkIndent.h:40
Multiprocessing communication superclass.
OpenGL rendering window.
Build a k-d tree decomposition of a list of points.
Definition vtkPKdTree.h:58
abstracts an OpenGL pixel buffer object.
vtkRenderPass()
Default constructor.
Context in which a vtkRenderPass will render.
abstracts an OpenGL texture object.
window superclass for vtkRenderWindow
Definition vtkWindow.h:39