| 883 | |
| 884 | |
| 885 | void Tr2DebugRenderer::SetSelectedObjects( const std::vector<std::pair<IRoot*, uint32_t>>& objects ) |
| 886 | { |
| 887 | m_selectedObjects.clear(); |
| 888 | for( auto it = objects.begin(); it != objects.end(); ++it ) |
| 889 | { |
| 890 | if( it->first ) |
| 891 | { |
| 892 | m_selectedObjects.insert( Tr2DebugObjectReference( it->first, it->second ) ); |
| 893 | } |
| 894 | } |
| 895 | } |
| 896 | |
| 897 | void Tr2DebugRenderer::SetOptions( IRoot* owner, std::vector<Tr2DebugRendererOption>& options ) |
| 898 | { |
nothing calls this directly
no test coverage detected