VTK
vtkCompositeZPass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeZPass.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 #ifndef vtkCompositeZPass_h
34 #define vtkCompositeZPass_h
35 
36 #include "vtkRenderingParallelModule.h" // For export macro
37 #include "vtkRenderPass.h"
38 
40 
42 class vtkTextureObject;
44 #ifdef VTK_OPENGL2
45 class vtkOpenGLHelper;
46 #else
47 class vtkShaderProgram2;
48 #endif
49 
50 class VTKRENDERINGPARALLEL_EXPORT vtkCompositeZPass : public vtkRenderPass
51 {
52 public:
53  static vtkCompositeZPass *New();
55  void PrintSelf(ostream& os, vtkIndent indent);
56 
59  virtual void Render(const vtkRenderState *s);
60 
64 
66 
68  vtkGetObjectMacro(Controller,vtkMultiProcessController);
69  virtual void SetController(vtkMultiProcessController *controller);
71 
73  bool IsSupported(vtkOpenGLRenderWindow *context);
74 
75  protected:
78 
80  virtual ~vtkCompositeZPass();
81 
85  void CreateProgram(vtkOpenGLRenderWindow *context);
86 
88 
91 #ifdef VTK_OPENGL2
92  vtkOpenGLHelper *Program;
93 #else
95 #endif
96  float *RawZBuffer;
98 
99  private:
100  vtkCompositeZPass(const vtkCompositeZPass&); // Not implemented.
101  void operator=(const vtkCompositeZPass&); // Not implemented.
102 };
103 
104 #endif
OpenGL rendering window.
void PrintSelf(ostream &os, vtkIndent indent)
window superclass for vtkRenderWindow
Definition: vtkWindow.h:36
Context in which a vtkRenderPass will render.
GLSL Program.
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkTextureObject * ZTexture
vtkPixelBufferObject * PBO
abstracts an OpenGL pixel buffer object.
vtkMultiProcessController * Controller
vtkShaderProgram2 * Program
abstracts an OpenGL texture object.
virtual void Render(const vtkRenderState *s)=0
virtual void ReleaseGraphicsResources(vtkWindow *w)
static vtkObject * New()
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:54
Merge depth buffers of processes.
Multiprocessing communication superclass.