MCPcopy Create free account
hub / github.com/baldurk/renderdoc / GetCaptureFileFormats

Method GetCaptureFileFormats

renderdoc/core/core.cpp:1874–1892  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1872}
1873
1874rdcarray<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
1894rdcarray<GPUDevice> RenderDoc::GetAvailableGPUs()
1895{

Callers 3

formats_readerMethod · 0.45
ExecuteMethod · 0.45
MainWindowMethod · 0.45

Calls 4

sortFunction · 0.50
beginMethod · 0.45
endMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected