MCPcopy Create free account
hub / github.com/LunarG/VulkanTools / Found

Function Found

vkconfig_core/path.cpp:571–579  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

569std::string RelativePath(Path::Builtin path) { return Path(path).RelativePath(); }
570
571bool Found(const std::vector<Path>& data, const Path& path) {
572 for (std::size_t i = 0, n = data.size(); i < n; ++i) {
573 if (data[i] == path) {
574 return true;
575 }
576 }
577
578 return false;
579}
580
581std::vector<Path> CollectFilePaths(const Path& path, const char* filter) {
582 std::vector<Path> result;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected