Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
b94c59df
Commit
b94c59df
authored
Apr 01, 2004
by
Berk Geveci
Browse files
Adapted to the changes in vtkOpenGLPolyDataMapper
parent
2a6f53d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Rendering/vtkMesaPolyDataMapper.h
View file @
b94c59df
...
...
@@ -22,7 +22,10 @@
#define __vtkMesaPolyDataMapper_h
#include
"vtkPolyDataMapper.h"
#include
"MangleMesaInclude/gl.h"
// Needed for GLenum
class
vtkCellArray
;
class
vtkPoints
;
class
vtkProperty
;
class
vtkRenderWindow
;
class
vtkMesaRenderer
;
...
...
@@ -53,6 +56,49 @@ protected:
vtkMesaPolyDataMapper
();
~
vtkMesaPolyDataMapper
();
void
DrawPoints
(
int
idx
,
vtkPoints
*
p
,
vtkDataArray
*
n
,
vtkUnsignedCharArray
*
c
,
vtkDataArray
*
t
,
vtkIdType
&
cellNum
,
int
&
noAbort
,
vtkCellArray
*
ca
,
vtkRenderer
*
ren
);
void
DrawLines
(
int
idx
,
vtkPoints
*
p
,
vtkDataArray
*
n
,
vtkUnsignedCharArray
*
c
,
vtkDataArray
*
t
,
vtkIdType
&
cellNum
,
int
&
noAbort
,
vtkCellArray
*
ca
,
vtkRenderer
*
ren
);
void
DrawPolygons
(
int
idx
,
vtkPoints
*
p
,
vtkDataArray
*
n
,
vtkUnsignedCharArray
*
c
,
vtkDataArray
*
t
,
vtkIdType
&
cellNum
,
int
&
noAbort
,
GLenum
rep
,
vtkCellArray
*
ca
,
vtkRenderer
*
ren
);
void
DrawTStrips
(
int
idx
,
vtkPoints
*
p
,
vtkDataArray
*
n
,
vtkUnsignedCharArray
*
c
,
vtkDataArray
*
t
,
vtkIdType
&
cellNum
,
int
&
noAbort
,
GLenum
rep
,
vtkCellArray
*
ca
,
vtkRenderer
*
ren
);
vtkIdType
TotalCells
;
int
ListId
;
vtkRenderWindow
*
RenderWindow
;
// RenderWindow used for the previous render
private:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment