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

Method getCacheID

src/OpenColorIO/Op.cpp:448–465  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

446}
447
448std::string OpRcPtrVec::getCacheID() const
449{
450 std::ostringstream stream;
451
452 for (const auto & op : m_ops)
453 {
454 if (!op->isNoOpType())
455 {
456 const std::string id = op->getCacheID();
457 if (!id.empty())
458 {
459 stream << " " << id;
460 }
461 }
462 }
463
464 return stream.str();
465}
466
467std::ostream& operator<< (std::ostream & os, const Op & op)
468{

Callers 15

mainFunction · 0.45
mainFunction · 0.45
get_cache_idMethod · 0.45
update_ocio_procMethod · 0.45
_build_programMethod · 0.45
update_ocio_procMethod · 0.45
_build_programMethod · 0.45
SerializeOpVecFunction · 0.45
buildProgramMethod · 0.45
test_menu_parametersMethod · 0.45
test_cache_idMethod · 0.45
test_copyMethod · 0.45

Calls 2

isNoOpTypeMethod · 0.80
emptyMethod · 0.45

Tested by 15

test_menu_parametersMethod · 0.36
test_cache_idMethod · 0.36
test_copyMethod · 0.36
test_cache_idMethod · 0.36
OCIO_ADD_TESTFunction · 0.36
OCIO_ADD_TESTFunction · 0.36
OCIO_ADD_TESTFunction · 0.36
OCIO_ADD_TESTFunction · 0.36
OCIO_ADD_TESTFunction · 0.36