VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Rendering/OpenGL2/vtkOpenGLPointGaussianMapper.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004 
00005   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00006   All rights reserved.
00007   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00008 
00009      This software is distributed WITHOUT ANY WARRANTY; without even
00010      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00011      PURPOSE.  See the above copyright notice for more information.
00012 
00013 =========================================================================*/
00021 #ifndef __vtkOpenGLPointGaussianMapper_h
00022 #define __vtkOpenGLPointGaussianMapper_h
00023 
00024 #include "vtkRenderingOpenGL2Module.h" // For export macro
00025 #include "vtkPointGaussianMapper.h"
00026 
00027 class vtkOpenGLPointGaussianMapperHelper;
00028 
00029 class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLPointGaussianMapper : public vtkPointGaussianMapper
00030 {
00031 public:
00032   static vtkOpenGLPointGaussianMapper* New();
00033   vtkTypeMacro(vtkOpenGLPointGaussianMapper, vtkPointGaussianMapper)
00034   void PrintSelf(ostream& os, vtkIndent indent);
00035 
00039   void ReleaseGraphicsResources(vtkWindow *);
00040 
00041 protected:
00042   vtkOpenGLPointGaussianMapper();
00043   ~vtkOpenGLPointGaussianMapper();
00044 
00045   virtual void RenderPiece(vtkRenderer *ren, vtkActor *act);
00046 
00047   vtkOpenGLPointGaussianMapperHelper *Helper;
00048   vtkTimeStamp HelperUpdateTime;
00049 
00050 private:
00051   vtkOpenGLPointGaussianMapper(const vtkOpenGLPointGaussianMapper&); // Not implemented.
00052   void operator=(const vtkOpenGLPointGaussianMapper&); // Not implemented.
00053 };
00054 
00055 #endif