Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkOpenGLImageMapper.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkOpenGLImageMapper.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00037 #ifndef __vtkOpenGLImageMapper_h
00038 #define __vtkOpenGLImageMapper_h
00039 
00040 
00041 #include "vtkImageMapper.h"
00042 class vtkActor2D;
00043 
00044 
00045 class VTK_RENDERING_EXPORT vtkOpenGLImageMapper : public vtkImageMapper
00046 {
00047 public:
00048   static vtkOpenGLImageMapper *New();
00049   vtkTypeRevisionMacro(vtkOpenGLImageMapper,vtkImageMapper);
00050   virtual void PrintSelf(ostream& os, vtkIndent indent);
00051   
00053 
00054   void RenderOverlay(vtkViewport* viewport, vtkActor2D* actor) {
00055     this->RenderStart(viewport,actor);}
00057 
00059 
00061   void RenderData(vtkViewport* viewport, vtkImageData* data, 
00062                   vtkActor2D* actor);
00064 
00065 protected:
00066   //
00067   //
00068   vtkOpenGLImageMapper();
00069   ~vtkOpenGLImageMapper();
00070 
00071 private:
00072   vtkOpenGLImageMapper(const vtkOpenGLImageMapper&);  // Not implemented.
00073   void operator=(const vtkOpenGLImageMapper&);  // Not implemented.
00074 };
00075 
00076 
00077 #endif
00078 
00079 
00080 
00081 
00082 
00083 
00084 
00085 
00086