| 1872 | } |
| 1873 | |
| 1874 | rdcarray<CaptureFileFormat> RenderDoc::GetCaptureFileFormats() |
| 1875 | { |
| 1876 | rdcarray<CaptureFileFormat> ret = m_ImportExportFormats; |
| 1877 | |
| 1878 | std::sort(ret.begin(), ret.end()); |
| 1879 | |
| 1880 | { |
| 1881 | CaptureFileFormat rdc; |
| 1882 | rdc.extension = "rdc"; |
| 1883 | rdc.name = "Native RDC capture file format."; |
| 1884 | rdc.description = "The format produced by frame-captures from applications directly."; |
| 1885 | rdc.openSupported = true; |
| 1886 | rdc.convertSupported = true; |
| 1887 | |
| 1888 | ret.insert(0, rdc); |
| 1889 | } |
| 1890 | |
| 1891 | return ret; |
| 1892 | } |
| 1893 | |
| 1894 | rdcarray<GPUDevice> RenderDoc::GetAvailableGPUs() |
| 1895 | { |
no test coverage detected