| 913 | |
| 914 | |
| 915 | bool Tr2DebugRenderer::GetColorForOption( Color& color, const Tr2DebugRendererOption& option ) const |
| 916 | { |
| 917 | auto iter = m_optionColors.find( option ); |
| 918 | if( iter != m_optionColors.end() ) |
| 919 | { |
| 920 | color = iter->second; |
| 921 | return true; |
| 922 | } |
| 923 | return false; |
| 924 | } |
| 925 | |
| 926 | void Tr2DebugRenderer::SetColorForOption( const Tr2DebugRendererOption& option, const Color& color ) |
| 927 | { |
no test coverage detected