/usr/include/vtk-6.3/vtkOpenGLGlyph3DMapper.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkOpenGLGlyph3DMapper.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.
=========================================================================*/
// .NAME vtkOpenGLGlyph3DMapper - vtkOpenGLGlyph3D on the GPU.
// .SECTION Description
// Do the same job than vtkGlyph3D but on the GPU. For this reason, it is
// a mapper not a vtkPolyDataAlgorithm. Also, some methods of vtkOpenGLGlyph3D
// don't make sense in vtkOpenGLGlyph3DMapper: GeneratePointIds, old-style
// SetSource, PointIdsName, IsPointVisible.
// .SECTION Implementation
//
// .SECTION See Also
// vtkOpenGLGlyph3D
#ifndef vtkOpenGLGlyph3DMapper_h
#define vtkOpenGLGlyph3DMapper_h
#include "vtkRenderingOpenGLModule.h" // For export macro
#include "vtkGlyph3DMapper.h"
#include "vtkGlyph3D.h" // for the constants (VTK_SCALE_BY_SCALAR, ...).
#include "vtkWeakPointer.h" // needed for vtkWeakPointer.
class vtkOpenGLGlyph3DMapperArray; // pimp
class vtkPainterPolyDataMapper;
class vtkScalarsToColorsPainter;
class VTKRENDERINGOPENGL_EXPORT vtkOpenGLGlyph3DMapper : public vtkGlyph3DMapper
{
public:
static vtkOpenGLGlyph3DMapper* New();
vtkTypeMacro(vtkOpenGLGlyph3DMapper, vtkGlyph3DMapper);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Method initiates the mapping process. Generally sent by the actor
// as each frame is rendered.
// Its behavior depends on the value of SelectMode.
virtual void Render(vtkRenderer *ren, vtkActor *a);
// Description:
// Release any graphics resources that are being consumed by this mapper.
// The parameter window could be used to determine which graphic
// resources to release.
virtual void ReleaseGraphicsResources(vtkWindow *window);
protected:
//BTX
vtkOpenGLGlyph3DMapper();
~vtkOpenGLGlyph3DMapper();
// Description:
// Take part in garbage collection.
virtual void ReportReferences(vtkGarbageCollector*);
// Description:
// Send mapper ivars to sub-mapper.
// \pre mapper_exists: mapper!=0
void CopyInformationToSubMapper(vtkPainterPolyDataMapper*);
// Description:
// Release display list used for matrices and color.
void ReleaseList();
// Description:
// Called when the PainterInformation becomes obsolete.
// It is called before the Render is initiated on the Painter.
virtual void UpdatePainterInformation();
vtkOpenGLGlyph3DMapperArray *SourceMappers; // array of mappers
vtkWeakPointer<vtkWindow> LastWindow; // Window used for previous render.
unsigned int DisplayListId; // GLuint
vtkScalarsToColorsPainter* ScalarsToColorsPainter;
vtkInformation* PainterInformation;
vtkTimeStamp PainterUpdateTime;
private:
vtkOpenGLGlyph3DMapper(const vtkOpenGLGlyph3DMapper&); // Not implemented.
void operator=(const vtkOpenGLGlyph3DMapper&); // Not implemented.
virtual void Render(vtkRenderer*, vtkActor*, vtkDataSet*);
//ETX
};
#endif
|