------------------------------------------------------------------------------
| 359 | |
| 360 | //------------------------------------------------------------------------------ |
| 361 | bool vtkOpenGLPolyDataMapper::DrawingEdges(vtkRenderer*, vtkActor* actor) |
| 362 | { |
| 363 | if (this->PointPicking) |
| 364 | { |
| 365 | return false; |
| 366 | } |
| 367 | |
| 368 | if (actor->GetProperty()->GetEdgeVisibility() && |
| 369 | this->GetOpenGLMode( |
| 370 | actor->GetProperty()->GetRepresentation(), this->LastBoundBO->PrimitiveType) == GL_TRIANGLES) |
| 371 | { |
| 372 | return true; |
| 373 | } |
| 374 | return false; |
| 375 | } |
| 376 | |
| 377 | //----------------------------------------------------------------------------- |
| 378 | vtkMTimeType vtkOpenGLPolyDataMapper::GetRenderPassStageMTime( |
no test coverage detected