------------------------------------------------------------------------------
| 622 | |
| 623 | //------------------------------------------------------------------------------ |
| 624 | void vtkHardwareSelector::UpdateMaximumPointId(vtkIdType attribid) |
| 625 | { |
| 626 | if (attribid < 0) |
| 627 | { |
| 628 | // negative attribid is valid. It happens when rendering higher order |
| 629 | // elements where new points are added for rendering smooth surfaces. |
| 630 | return; |
| 631 | } |
| 632 | |
| 633 | this->MaximumPointId = (attribid > this->MaximumPointId) ? attribid : this->MaximumPointId; |
| 634 | } |
| 635 | |
| 636 | //------------------------------------------------------------------------------ |
| 637 | void vtkHardwareSelector::UpdateMaximumCellGridTupleId(vtkIdType attribid) |
no outgoing calls
no test coverage detected