------------------------------------------------------------------------------
| 94 | |
| 95 | //------------------------------------------------------------------------------ |
| 96 | void vtkPSurfaceLICInterface::WriteTimerLog(const char* fileName) |
| 97 | { |
| 98 | #if defined(vtkSurfaceLICInterfaceTIME) |
| 99 | std::string fname = fileName ? fileName : ""; |
| 100 | if (fname == this->LogFileName) |
| 101 | { |
| 102 | return; |
| 103 | } |
| 104 | this->LogFileName = fname; |
| 105 | if (!fname.empty()) |
| 106 | { |
| 107 | vtkParallelTimer* log = vtkParallelTimer::GetGlobalInstance(); |
| 108 | log->SetFileName(fname.c_str()); |
| 109 | log->Update(); |
| 110 | log->Write(); |
| 111 | } |
| 112 | #else |
| 113 | (void)fileName; |
| 114 | #endif |
| 115 | } |
| 116 | |
| 117 | //------------------------------------------------------------------------------ |
| 118 | vtkPainterCommunicator* vtkPSurfaceLICInterface::CreateCommunicator(int include) |
nothing calls this directly
no test coverage detected