| 233 | } |
| 234 | |
| 235 | void Tr2RenderContext::Join( Tr2RenderContext* context ) |
| 236 | { |
| 237 | CcpAutoMutex lock( m_parallelContextMutex ); |
| 238 | Tr2RenderContextPtr ctx; |
| 239 | ctx.Attach( context ); |
| 240 | m_parallelContextsPool.push_back( ctx ); |
| 241 | m_parallelContextSemaphore.Signal(); |
| 242 | } |
| 243 | |
| 244 | void Tr2RenderContext::EndParallelEncoding() |
| 245 | { |
no test coverage detected