| 19 | } |
| 20 | |
| 21 | GraphicsContext * ThreadSafeFactory::GetResourcesUploadContext() |
| 22 | { |
| 23 | return CreateContext([this]() { return m_factory->GetResourcesUploadContext(); }, |
| 24 | [this]() { return m_factory->IsDrawContextCreated(); }); |
| 25 | } |
| 26 | |
| 27 | GraphicsContext * ThreadSafeFactory::CreateContext(TCreateCtxFn const & createFn, TIsSeparateCreatedFn const & checkFn) |
| 28 | { |
no test coverage detected