VTK
vtkMesaDisplayListPainter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMesaDisplayListPainter.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 =========================================================================*/
22 #ifndef __vtkMesaDisplayListPainter_h
23 #define __vtkMesaDisplayListPainter_h
24 
25 #include "vtkDisplayListPainter.h"
26 
28 {
29 public:
32  void PrintSelf(ostream& os, vtkIndent indent);
33 
34 
36 
39  virtual void ReleaseGraphicsResources(vtkWindow *);
40 protected:
44 
45  unsigned int ListIds[4];
46  vtkTimeStamp BuildTimes[4];
47 
48  void ReleaseList(int index);
49 
51 
53  virtual void RenderInternal(vtkRenderer* renderer, vtkActor* actor,
54  unsigned long typeflags);
56 
57 private:
58  vtkMesaDisplayListPainter(const vtkMesaDisplayListPainter&); // Not implemented.
59  void operator=(const vtkMesaDisplayListPainter&); // Not implemented.
60 };
61 
62 #endif
63