| 693 | } |
| 694 | |
| 695 | void BackendRenderer::OnContextCreate() |
| 696 | { |
| 697 | LOG(LINFO, ("On context create.")); |
| 698 | m_context = m_contextFactory->GetResourcesUploadContext(); |
| 699 | m_contextFactory->WaitForInitialization(m_context.get()); |
| 700 | m_context->MakeCurrent(); |
| 701 | m_context->Init(m_apiVersion); |
| 702 | dp::SupportManager::Instance().Init(m_context); |
| 703 | |
| 704 | m_readManager->Start(); |
| 705 | InitContextDependentResources(); |
| 706 | } |
| 707 | |
| 708 | void BackendRenderer::OnContextDestroy() |
| 709 | { |
nothing calls this directly
no test coverage detected