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/vtkClearRGBPass.h

73 lines
1.7 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkClearRGBPass.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 vtkClearRGBPass
* @brief Paint in the color buffer.
*
* Clear the color buffer to the specified color.
*
* @sa
* vtkValuePasses
*/
#ifndef vtkClearRGBPass_h
#define vtkClearRGBPass_h
#include "vtkRenderingOpenGLModule.h" // For export macro
#include "vtkRenderPass.h"
class vtkOpenGLRenderWindow;
class VTKRENDERINGOPENGL_EXPORT vtkClearRGBPass : public vtkRenderPass
{
public:
static vtkClearRGBPass *New();
vtkTypeMacro(vtkClearRGBPass,vtkRenderPass);
void PrintSelf(ostream& os, vtkIndent indent);
/**
* Perform rendering according to a render state s.
*/
virtual void Render(const vtkRenderState *s);
//@{
/**
* Set/Get the background color of the rendering screen using an rgb color
* specification.
*/
vtkSetVector3Macro(Background,double);
vtkGetVector3Macro(Background,double);
//@}
protected:
/**
* Default constructor.
*/
vtkClearRGBPass();
/**
* Destructor.
*/
virtual ~vtkClearRGBPass();
double Background[3];
private:
vtkClearRGBPass(const vtkClearRGBPass&) VTK_DELETE_FUNCTION;
void operator=(const vtkClearRGBPass&) VTK_DELETE_FUNCTION;
};
#endif