MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / getFrameViewRequest

Method getFrameViewRequest

Engine/ParallelRenderArgs.cpp:590–603  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

588}
589
590const FrameViewRequest*
591NodeFrameRequest::getFrameViewRequest(double time,
592 ViewIdx view) const
593{
594 for (NodeFrameViewRequestData::const_iterator it = frames.begin(); it != frames.end(); ++it) {
595 if (it->first.time == time) {
596 if ( (it->first.view == -1) || (it->first.view == view) ) {
597 return &it->second;
598 }
599 }
600 }
601
602 return 0;
603}
604
605bool
606NodeFrameRequest::getFrameViewCanonicalRoI(double time,

Callers 3

getImageMethod · 0.80
renderRoIMethod · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected