------------------------------------------------------------------------------
| 146 | |
| 147 | //------------------------------------------------------------------------------ |
| 148 | void vtkXMLPHyperTreeGridReader::PieceProgressCallback() |
| 149 | { |
| 150 | float width = this->ProgressRange[1] - this->ProgressRange[0]; |
| 151 | float pieceProgress = this->PieceReaders[this->Piece]->GetProgress(); |
| 152 | float progress = this->ProgressRange[0] + pieceProgress * width; |
| 153 | this->UpdateProgressDiscrete(progress); |
| 154 | if (this->AbortExecute) |
| 155 | { |
| 156 | this->PieceReaders[this->Piece]->SetAbortExecute(1); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | //------------------------------------------------------------------------------ |
| 161 | void vtkXMLPHyperTreeGridReader::SetupNextPiece() {} |
nothing calls this directly
no test coverage detected