| 98 | } |
| 99 | |
| 100 | void Tr2RenderJobs::RunUpdate( Be::Time realTime, Be::Time simTime ) |
| 101 | { |
| 102 | std::vector<TriRenderJobPtr> copyOfJobs; |
| 103 | copyOfJobs.insert( copyOfJobs.end(), m_updateRecurring.begin(), m_updateRecurring.end() ); |
| 104 | |
| 105 | for( auto it = copyOfJobs.cbegin(); it != copyOfJobs.cend(); ++it ) |
| 106 | { |
| 107 | TriRenderJob* rj = *it; |
| 108 | TriRenderJobStatus status = rj->Run( realTime, simTime ); |
| 109 | CCP_ASSERT( status != RJ_FAILED ); |
| 110 | } |
| 111 | } |
no test coverage detected