| 792 | } |
| 793 | |
| 794 | void BackendRenderer::RecacheMapShapes() |
| 795 | { |
| 796 | CHECK(m_context != nullptr, ()); |
| 797 | auto msg = |
| 798 | make_unique_dp<MapShapesMessage>(make_unique_dp<MyPosition>(m_context, m_texMng), |
| 799 | make_unique_dp<SelectionShape>(m_context, m_texMng), m_arrow3dPreloadedData); |
| 800 | m_context->Flush(); |
| 801 | m_commutator->PostMessage(ThreadsCommutator::RenderThread, std::move(msg), MessagePriority::Normal); |
| 802 | } |
| 803 | |
| 804 | void BackendRenderer::CleanupTextures() |
| 805 | { |
nothing calls this directly
no test coverage detected