| 143 | } |
| 144 | |
| 145 | bool Tr2DebugRenderer::HasOption( IRoot* owner, const char* option ) const |
| 146 | { |
| 147 | auto found = m_options.find( owner ); |
| 148 | if( found == m_options.end() ) |
| 149 | { |
| 150 | return m_defaultOptions.find( option ) != m_defaultOptions.end(); |
| 151 | } |
| 152 | return found->second.find( option ) != found->second.end(); |
| 153 | } |
| 154 | |
| 155 | bool Tr2DebugRenderer::IsSelected( IRoot* owner ) const |
| 156 | { |
no test coverage detected