MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/OpenColorIO / FindView

Function FindView

src/OpenColorIO/Display.cpp:33–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33ViewVec::const_iterator FindView(const ViewVec & vec, const std::string & name)
34{
35 return std::find_if(vec.begin(), vec.end(),
36 [name](const View & view)
37 {
38 return 0 == Platform::Strcasecmp(name.c_str(), view.m_name.c_str());
39 });
40}
41
42ViewVec::iterator FindView(ViewVec & vec, const std::string & name)
43{

Callers 15

AddViewFunction · 0.85
getViewsMethod · 0.85
validateSharedViewMethod · 0.85
getViewMethod · 0.85
isColorSpaceUsedMethod · 0.85
removeSharedViewMethod · 0.85
addDisplaySharedViewMethod · 0.85
removeDisplayViewMethod · 0.85
addVirtualDisplayViewMethod · 0.85

Calls 3

StrcasecmpFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected