| 1835 | } |
| 1836 | |
| 1837 | CaptureImporter RenderDoc::GetCaptureImporter(const rdcstr &filetype) |
| 1838 | { |
| 1839 | auto it = m_Importers.find(filetype); |
| 1840 | |
| 1841 | if(it == m_Importers.end()) |
| 1842 | return NULL; |
| 1843 | |
| 1844 | return it->second; |
| 1845 | } |
| 1846 | |
| 1847 | rdcarray<rdcstr> RenderDoc::GetSupportedDeviceProtocols() |
| 1848 | { |
no test coverage detected