----------------------------------------------------------------------
| 1472 | |
| 1473 | //---------------------------------------------------------------------- |
| 1474 | vtkMTimeType vtkFastLabeledDataMapper::GetMTime() |
| 1475 | { |
| 1476 | vtkMTimeType mtime = this->Superclass::GetMTime(); |
| 1477 | |
| 1478 | for (vtkTextProperty* tprop : this->Implementation->TextProperties) |
| 1479 | { |
| 1480 | if (tprop) |
| 1481 | { |
| 1482 | mtime = std::max(mtime, tprop->GetMTime()); |
| 1483 | } |
| 1484 | } |
| 1485 | |
| 1486 | return mtime; |
| 1487 | } |
| 1488 | |
| 1489 | //----------------------------------------------------------------------------- |
| 1490 | void vtkFastLabeledDataMapper::RenderPieceStart(vtkRenderer* ren, vtkActor* actor) |
no test coverage detected