You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWTAI-Platform/3rd/VTK7.1/include/vtkVolumetricPass.h

67 lines
1.8 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkVolumetricPass.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkVolumetricPass
* @brief Render the volumetric geometry with property key
* filtering.
*
* vtkVolumetricPass renders the volumetric geometry of all the props that
* have the keys contained in vtkRenderState.
*
* This pass expects an initialized depth buffer and color buffer.
* Initialized buffers means they have been cleared with farest z-value and
* background color/gradient/transparent color.
*
* @sa
* vtkRenderPass vtkDefaultPass
*/
#ifndef vtkVolumetricPass_h
#define vtkVolumetricPass_h
#include "vtkRenderingOpenGLModule.h" // For export macro
#include "vtkDefaultPass.h"
class VTKRENDERINGOPENGL_EXPORT vtkVolumetricPass : public vtkDefaultPass
{
public:
static vtkVolumetricPass *New();
vtkTypeMacro(vtkVolumetricPass,vtkDefaultPass);
void PrintSelf(ostream& os, vtkIndent indent);
/**
* Perform rendering according to a render state \p s.
* \pre s_exists: s!=0
*/
virtual void Render(const vtkRenderState *s);
protected:
/**
* Default constructor.
*/
vtkVolumetricPass();
/**
* Destructor.
*/
virtual ~vtkVolumetricPass();
private:
vtkVolumetricPass(const vtkVolumetricPass&) VTK_DELETE_FUNCTION;
void operator=(const vtkVolumetricPass&) VTK_DELETE_FUNCTION;
};
#endif