------------------------------------------------------------------------------
| 649 | |
| 650 | //------------------------------------------------------------------------------ |
| 651 | void vtkHardwareSelector::UpdateMaximumCellId(vtkIdType attribid) |
| 652 | { |
| 653 | if (attribid < 0) |
| 654 | { |
| 655 | // negative attribid is valid. It happens when rendering higher order |
| 656 | // elements where new points are added for rendering smooth surfaces. |
| 657 | return; |
| 658 | } |
| 659 | |
| 660 | this->MaximumCellId = (attribid > this->MaximumCellId) ? attribid : this->MaximumCellId; |
| 661 | } |
| 662 | |
| 663 | //------------------------------------------------------------------------------ |
| 664 | void vtkHardwareSelector::RenderProcessId(unsigned int processid) |
no outgoing calls
no test coverage detected