MCPcopy Create free account
hub / github.com/GPUOpen-Tools/compressonator / CMP_GetFullPath

Function CMP_GetFullPath

applications/_plugins/common/cmp_fileio.cpp:267–277  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265}
266
267std::string CMP_GetFullPath(std::string file)
268{
269#if defined _CMP_CPP17_ || defined _CMP_CPP14_
270 sfs::path p(file);
271 sfs::path fullpath = sfs::absolute(p);
272 return fullpath.generic_string();
273 //return sfs::absolute(file).string();
274#else
275 return file;
276#endif
277}
278
279static std::vector<std::string> GetFilesInSubdirectory(const std::string& directory, const std::string& filter)
280{

Callers 2

ProcessCMDLineOptionsFunction · 0.85
OutputImagePropsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected